@opengis/cms 0.0.62 → 0.0.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/README.md +131 -131
  2. package/dist/{ArticlesPage-CFjE_cw_.js → ArticlesPage-BjYzvTWM.js} +3 -3
  3. package/dist/{CollectionsBreadcrumb-BCxeRikP.js → CollectionsBreadcrumb-HePNJb-d.js} +1 -1
  4. package/dist/CollectionsBreadcrumb.vue_vue_type_script_setup_true_lang-BJh-tjam.js +53 -0
  5. package/dist/{Dashboard-C1eGscNd.js → Dashboard-CXkg_pk8.js} +132 -132
  6. package/dist/{EditCollectionPage-C4uNmBJf.js → EditCollectionPage-BGZCMcQS.js} +3 -3
  7. package/dist/{MenuAddPage-D-p3gFgm.js → MenuAddPage-QTnwCoGh.js} +1 -1
  8. package/dist/{MenuBody-rN5j4YBu.js → MenuBody-Bi0ONVZf.js} +2 -2
  9. package/dist/{MenuItemPage-BoJw885D.js → MenuItemPage-B7Y9KFyb.js} +3 -3
  10. package/dist/{MenuList-DFEBS0NB.js → MenuList-BLIpeqSd.js} +53 -53
  11. package/dist/{MenuPage-BCZB_S8j.js → MenuPage-3W6jZ15H.js} +1 -1
  12. package/dist/{MenuWrapper-AZ_8s-zd.js → MenuWrapper-OrOv6sOb.js} +1 -1
  13. package/dist/{MonacoEditor-Db-3Jc3E.js → MonacoEditor-ByPT8pnv.js} +1 -1
  14. package/dist/MonacoEditor.vue_vue_type_script_setup_true_lang-C8cip9Ci.js +84 -0
  15. package/dist/{UniversalTable-CzqPG-tY.js → UniversalTable-GBd_pStq.js} +80 -80
  16. package/dist/{UniversalTablePagination-4gL47A7I.js → UniversalTablePagination-Dw2hc0nc.js} +46 -46
  17. package/dist/{contentForm-CcFbUeal.js → contentForm-NmskI6Ye.js} +2 -2
  18. package/dist/index.js +5 -5
  19. package/dist/{vs-builder-monaco-B3Jj0V31.js → vs-builder-monaco-Cw-f19gc.js} +1 -1
  20. package/dist/{vs-builder-preview-DL3RYMp7.js → vs-builder-preview-l5KhqlrF.js} +1 -1
  21. package/dist/{vs-form-reference-list-Dtv8fJJU.js → vs-form-reference-list-hZufPxfE.js} +696 -353
  22. package/input-types.json +9 -9
  23. package/locales/en.json +823 -815
  24. package/locales/uk.json +821 -813
  25. package/module/cms/cls/content.status.json +17 -17
  26. package/module/cms/cls/user_type.json +9 -9
  27. package/module/cms/form/admin.users.form.json +77 -77
  28. package/module/cms/select/cms.page_type.sql +1 -1
  29. package/module/cms/select/news_tag_id.sql +11 -11
  30. package/module/cms/table/admin.users.table.json +53 -53
  31. package/module/cms/table/collection.default.table.json +96 -96
  32. package/module/cms/table/single.default.table.json +116 -116
  33. package/package.json +69 -69
  34. package/plugin.js +43 -43
  35. package/server/app.js +35 -35
  36. package/server/config.js +4 -4
  37. package/server/functions/getContent.js +45 -45
  38. package/server/functions/getDraftKey.js +22 -22
  39. package/server/functions/getSearchData.js +31 -31
  40. package/server/functions/getTags.js +30 -30
  41. package/server/functions/getUser.js +27 -27
  42. package/server/functions/utils/mock.reply.js +55 -55
  43. package/server/index.js +22 -22
  44. package/server/migrations/fixes.sql +132 -132
  45. package/server/migrations/site.sql +596 -596
  46. package/server/plugins/adminHook.js +78 -78
  47. package/server/plugins/hook.js +59 -59
  48. package/server/plugins/vite.js +75 -75
  49. package/server/routes/category/controllers/cms.category.delete.js +21 -21
  50. package/server/routes/category/controllers/cms.category.get.js +17 -17
  51. package/server/routes/category/controllers/cms.category.list.js +16 -16
  52. package/server/routes/category/controllers/cms.category.post.js +21 -21
  53. package/server/routes/category/controllers/cms.category.put.js +23 -23
  54. package/server/routes/category/index.mjs +22 -22
  55. package/server/routes/cms/controllers/cmsStat.js +55 -55
  56. package/server/routes/cms/controllers/cmsSuggest.js +57 -57
  57. package/server/routes/cms/controllers/deleteContent.js +113 -113
  58. package/server/routes/cms/controllers/downloadMedia.js +84 -84
  59. package/server/routes/cms/controllers/getContent.js +113 -113
  60. package/server/routes/cms/controllers/getContentBySlug.js +93 -93
  61. package/server/routes/cms/controllers/getPermissions.js +15 -15
  62. package/server/routes/cms/controllers/insertContent.js +226 -226
  63. package/server/routes/cms/controllers/listMedia.js +155 -155
  64. package/server/routes/cms/controllers/properties.get.js +18 -18
  65. package/server/routes/cms/controllers/properties.post.js +99 -99
  66. package/server/routes/cms/controllers/searchContent.js +214 -214
  67. package/server/routes/cms/controllers/setPermissions.js +49 -49
  68. package/server/routes/cms/controllers/translate.js +89 -89
  69. package/server/routes/cms/controllers/updateContent.js +231 -231
  70. package/server/routes/cms/functions/getSettings.js +48 -48
  71. package/server/routes/cms/index.mjs +112 -112
  72. package/server/routes/cms/utils/additionalData.js +35 -35
  73. package/server/routes/cms/utils/getCollection.js +89 -89
  74. package/server/routes/cms/utils/getSingle.js +188 -188
  75. package/server/routes/cms/utils/inputTypes.js +5 -5
  76. package/server/routes/cms/utils/insertContentLocalization.js +104 -104
  77. package/server/routes/cms/utils/requestTranslation.js +135 -135
  78. package/server/routes/cms/utils/updateLocalization.js +42 -42
  79. package/server/routes/cmsSpace/controllers/deleteSpace.js +26 -26
  80. package/server/routes/cmsSpace/controllers/getSpaces.js +28 -28
  81. package/server/routes/cmsSpace/controllers/insertSpace.js +22 -22
  82. package/server/routes/cmsSpace/controllers/updateSpace.js +24 -24
  83. package/server/routes/cmsSpace/index.mjs +20 -20
  84. package/server/routes/contentType/controllers/addContentType.js +160 -160
  85. package/server/routes/contentType/controllers/contentTypeList.js +47 -47
  86. package/server/routes/contentType/controllers/delContentType.js +75 -75
  87. package/server/routes/contentType/controllers/editContentType.js +70 -70
  88. package/server/routes/contentType/controllers/getContentType.js +57 -57
  89. package/server/routes/contentType/index.mjs +35 -35
  90. package/server/routes/contentType/utils/updateContents.js +44 -44
  91. package/server/routes/contentType/utils/updateCustomContentTable.js +53 -53
  92. package/server/routes/feedback/controllers/email.list.js +24 -24
  93. package/server/routes/feedback/controllers/feedback.js +48 -48
  94. package/server/routes/feedback/controllers/feedback.list.js +37 -37
  95. package/server/routes/feedback/controllers/news.subscriptions.js +44 -44
  96. package/server/routes/feedback/index.mjs +71 -71
  97. package/server/routes/logs/controllers/export.user.logs.js +77 -77
  98. package/server/routes/logs/controllers/user.logs.js +44 -44
  99. package/server/routes/logs/index.mjs +9 -9
  100. package/server/routes/menu/controllers/addMenu.js +37 -37
  101. package/server/routes/menu/controllers/delMenu.js +31 -31
  102. package/server/routes/menu/controllers/editMenu.js +41 -41
  103. package/server/routes/menu/controllers/getMenu.js +24 -24
  104. package/server/routes/menu/functions/getMenu.js +50 -50
  105. package/server/routes/menu/index.mjs +13 -13
  106. package/server/routes/migration/controllers/collectionToCustom.js +137 -137
  107. package/server/routes/migration/index.mjs +8 -8
  108. package/server/routes/root.mjs +8 -8
  109. package/server/routes/tags/controllers/add.tags.js +24 -24
  110. package/server/routes/tags/controllers/del.tags.js +19 -19
  111. package/server/routes/tags/controllers/edit.tags.js +25 -25
  112. package/server/routes/tags/controllers/get.tags.js +15 -15
  113. package/server/routes/tags/index.mjs +14 -14
  114. package/server/templates/cls/cms.category_type.json +9 -9
  115. package/server/templates/cls/cms.content_review_status.json +9 -9
  116. package/server/templates/cls/cms.content_status.json +9 -9
  117. package/server/templates/cls/cms.content_type.json +9 -9
  118. package/server/templates/cls/cms.lang.json +9 -9
  119. package/server/templates/page/login.html +126 -126
  120. package/server/templates/select/core.user_mentioned.sql +1 -1
  121. package/utils.d.ts +52 -52
  122. package/utils.js +8 -8
  123. package/dist/CollectionsBreadcrumb.vue_vue_type_script_setup_true_lang-umRzB5mY.js +0 -53
  124. package/dist/MonacoEditor.vue_vue_type_script_setup_true_lang-B1DrxmQX.js +0 -84
@@ -1,11 +1,11 @@
1
- import { openBlock as r, createElementBlock as s, createStaticVNode as p, createElementVNode as d, toDisplayString as a, createCommentVNode as g, useModel as A, Fragment as I, renderList as R, unref as b, createBlock as k, resolveDynamicComponent as L, mergeModels as M, ref as m, computed as j, watch as E, createVNode as w, withCtx as C } from "vue";
2
- import { Edit as Y, Trash2 as U, GripVertical as D } from "lucide-vue-next";
3
- import { d as J } from "./vuedraggable-CoAPPFYd.js";
4
- import { VsDrawer as W, notify as Z } from "@opengis/core";
5
- import { _ as K } from "./vs-form-tiptap.vue_vue_type_script_setup_true_lang-DGgsqXwg.js";
6
- import { inputs as q, VForm as G } from "@opengis/form";
7
- import { useI18n as F } from "vue-i18n";
8
- const T = "data:image/png;base64,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", N = {
1
+ import { openBlock as r, createElementBlock as s, createStaticVNode as g, createElementVNode as d, toDisplayString as i, createCommentVNode as v, Fragment as $, renderList as _, normalizeClass as C, mergeModels as E, useModel as j, unref as x, createBlock as A, resolveDynamicComponent as G, getCurrentInstance as N, ref as w, computed as M, watch as B, createVNode as k, withCtx as q } from "vue";
2
+ import { Edit as J, Trash2 as K, GripVertical as O } from "lucide-vue-next";
3
+ import { d as P } from "./vuedraggable-CoAPPFYd.js";
4
+ import { VsDrawer as F, notify as T } from "@opengis/core";
5
+ import { _ as H } from "./vs-form-tiptap.vue_vue_type_script_setup_true_lang-DGgsqXwg.js";
6
+ import { inputs as L, VForm as R } from "@opengis/form";
7
+ import { useI18n as Y } from "vue-i18n";
8
+ const U = "data:image/png;base64,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", D = {
9
9
  faq: {
10
10
  schema: {
11
11
  title: {
@@ -781,87 +781,10 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
781
781
  }
782
782
  }
783
783
  }
784
- }, _ = [
785
- {
786
- text: "reference.faq",
787
- id: "faq"
788
- },
789
- {
790
- text: "reference.banner",
791
- id: "banner"
792
- },
793
- {
794
- text: "reference.slider",
795
- id: "slider"
796
- },
797
- {
798
- text: "reference.photoGrid",
799
- id: "photoGrid"
800
- },
801
- {
802
- text: "reference.video",
803
- id: "video"
804
- },
805
- {
806
- text: "reference.about",
807
- id: "about"
808
- },
809
- {
810
- text: "reference.cards",
811
- id: "cards"
812
- },
813
- {
814
- text: "reference.usefulLinks",
815
- id: "usefulLinks"
816
- },
817
- {
818
- text: "reference.team",
819
- id: "team"
820
- },
821
- {
822
- text: "reference.body",
823
- id: "body"
824
- },
825
- {
826
- text: "reference.news",
827
- id: "news"
828
- },
829
- {
830
- text: "reference.form",
831
- id: "form"
832
- },
833
- {
834
- text: "reference.tabs",
835
- id: "tabs"
836
- },
837
- {
838
- text: "reference.vertical_tabs",
839
- id: "vertical_tabs"
840
- },
841
- {
842
- text: "reference.documents",
843
- id: "documents"
844
- },
845
- {
846
- text: "reference.infoLine",
847
- id: "infoLine"
848
- },
849
- {
850
- text: "reference.interested",
851
- id: "interested"
852
- },
853
- {
854
- text: "reference.contact",
855
- id: "contact"
856
- },
857
- {
858
- text: "reference.iframe",
859
- id: "iframe"
860
- }
861
- ], O = { class: "h-full w-full flex flex-col" }, H = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, P = { class: "text-xs font-medium text-gray-600" }, X = {
784
+ }, X = { class: "h-full w-full flex flex-col" }, ee = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, te = { class: "text-xs font-medium text-gray-600" }, de = {
862
785
  key: 0,
863
786
  class: "text-xs text-gray-500"
864
- }, V = {
787
+ }, Q = {
865
788
  __name: "cards-skeleton",
866
789
  props: {
867
790
  text: {
@@ -874,18 +797,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
874
797
  }
875
798
  },
876
799
  setup(e) {
877
- return (i, t) => (r(), s("div", O, [
878
- t[0] || (t[0] = p('<div class="flex-1 grid grid-cols-3 gap-1.5"><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div></div>', 1)),
879
- d("div", H, [
880
- d("div", P, a(i.$t(e.text)), 1),
881
- e.count && e.count > 0 ? (r(), s("div", X, a(e.count), 1)) : g("", !0)
800
+ return (l, t) => (r(), s("div", X, [
801
+ t[0] || (t[0] = g('<div class="flex-1 grid grid-cols-3 gap-1.5"><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div><div class="bg-gray-200 rounded p-1.5 flex flex-col"><div class="flex-1 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded"></div></div></div>', 1)),
802
+ d("div", ee, [
803
+ d("div", te, i(l.$t(e.text)), 1),
804
+ e.count && e.count > 0 ? (r(), s("div", de, i(e.count), 1)) : v("", !0)
882
805
  ])
883
806
  ]));
884
807
  }
885
- }, ee = { class: "h-full w-full flex flex-col" }, te = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, re = { class: "text-xs font-medium text-gray-600" }, de = {
808
+ }, re = { class: "h-full w-full flex flex-col" }, se = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, le = { class: "text-xs font-medium text-gray-600" }, ie = {
886
809
  key: 0,
887
810
  class: "text-xs text-gray-500"
888
- }, le = {
811
+ }, ae = {
889
812
  __name: "faq-skeleton",
890
813
  props: {
891
814
  text: {
@@ -898,18 +821,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
898
821
  }
899
822
  },
900
823
  setup(e) {
901
- return (i, t) => (r(), s("div", ee, [
902
- t[0] || (t[0] = p('<div class="h-3 bg-gray-500 rounded mb-2"></div><div class="space-y-1.5 flex-1"><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div></div><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div><div class="mt-1 pt-1 border-t border-gray-200"><div class="space-y-0.5"><div class="h-1 bg-gray-200 rounded"></div><div class="h-1 bg-gray-200 rounded w-5/6"></div><div class="h-1 bg-gray-200 rounded w-4/5"></div></div></div></div><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div></div><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div></div></div>', 2)),
903
- d("div", te, [
904
- d("div", re, a(i.$t(e.text)), 1),
905
- e.count && e.count > 0 ? (r(), s("div", de, a(e.count), 1)) : g("", !0)
824
+ return (l, t) => (r(), s("div", re, [
825
+ t[0] || (t[0] = g('<div class="h-3 bg-gray-500 rounded mb-2"></div><div class="space-y-1.5 flex-1"><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div></div><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div><div class="mt-1 pt-1 border-t border-gray-200"><div class="space-y-0.5"><div class="h-1 bg-gray-200 rounded"></div><div class="h-1 bg-gray-200 rounded w-5/6"></div><div class="h-1 bg-gray-200 rounded w-4/5"></div></div></div></div><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div></div><div class="border border-gray-300 rounded p-1"><div class="flex items-center justify-between"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-2.5 h-2.5 text-gray-400"><path d="m6 9 6 6 6-6"></path></svg></div></div></div>', 2)),
826
+ d("div", se, [
827
+ d("div", le, i(l.$t(e.text)), 1),
828
+ e.count && e.count > 0 ? (r(), s("div", ie, i(e.count), 1)) : v("", !0)
906
829
  ])
907
830
  ]));
908
831
  }
909
- }, se = { class: "h-full w-full flex flex-col" }, ie = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, ae = { class: "text-xs font-medium text-gray-600" }, oe = {
832
+ }, oe = { class: "h-full w-full flex flex-col" }, ne = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, ce = { class: "text-xs font-medium text-gray-600" }, ue = {
910
833
  key: 0,
911
834
  class: "text-xs text-gray-500"
912
- }, S = {
835
+ }, z = {
913
836
  __name: "banner-skeleton",
914
837
  props: {
915
838
  text: {
@@ -922,18 +845,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
922
845
  }
923
846
  },
924
847
  setup(e) {
925
- return (i, t) => (r(), s("div", se, [
926
- t[0] || (t[0] = p('<div class="flex-1 bg-gray-200 rounded relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-16 h-10 bg-gray-300 rounded"></div></div><div class="absolute bottom-2 left-2"><div class="h-3 bg-gray-400 rounded w-16"></div></div></div>', 1)),
927
- d("div", ie, [
928
- d("div", ae, a(i.$t(e.text)), 1),
929
- e.count && e.count > 0 ? (r(), s("div", oe, a(e.count), 1)) : g("", !0)
848
+ return (l, t) => (r(), s("div", oe, [
849
+ t[0] || (t[0] = g('<div class="flex-1 bg-gray-200 rounded relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-16 h-10 bg-gray-300 rounded"></div></div><div class="absolute bottom-2 left-2"><div class="h-3 bg-gray-400 rounded w-16"></div></div></div>', 1)),
850
+ d("div", ne, [
851
+ d("div", ce, i(l.$t(e.text)), 1),
852
+ e.count && e.count > 0 ? (r(), s("div", ue, i(e.count), 1)) : v("", !0)
930
853
  ])
931
854
  ]));
932
855
  }
933
- }, ne = { class: "h-full w-full flex flex-col" }, ce = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, ue = { class: "text-xs font-medium text-gray-600" }, ve = {
856
+ }, ve = { class: "h-full w-full flex flex-col" }, ge = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, ye = { class: "text-xs font-medium text-gray-600" }, be = {
934
857
  key: 0,
935
858
  class: "text-xs text-gray-500"
936
- }, ge = {
859
+ }, xe = {
937
860
  __name: "form-skeleton",
938
861
  props: {
939
862
  text: {
@@ -946,18 +869,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
946
869
  }
947
870
  },
948
871
  setup(e) {
949
- return (i, t) => (r(), s("div", ne, [
950
- t[0] || (t[0] = p('<div class="h-3 bg-gray-500 rounded mb-2"></div><div class="space-y-1.5 flex-1"><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/4"></div><div class="h-5 bg-gray-200 rounded border border-gray-300"></div></div><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/3"></div><div class="h-5 bg-gray-200 rounded border border-gray-300"></div></div><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/4"></div><div class="h-5 bg-gray-200 rounded border border-gray-300"></div></div><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/3"></div><div class="h-8 bg-gray-200 rounded border border-gray-300"></div></div></div><div class="h-6 bg-gray-600 rounded mt-2"></div>', 3)),
951
- d("div", ce, [
952
- d("div", ue, a(i.$t(e.text)), 1),
953
- e.count && e.count > 0 ? (r(), s("div", ve, a(e.count), 1)) : g("", !0)
872
+ return (l, t) => (r(), s("div", ve, [
873
+ t[0] || (t[0] = g('<div class="h-3 bg-gray-500 rounded mb-2"></div><div class="space-y-1.5 flex-1"><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/4"></div><div class="h-5 bg-gray-200 rounded border border-gray-300"></div></div><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/3"></div><div class="h-5 bg-gray-200 rounded border border-gray-300"></div></div><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/4"></div><div class="h-5 bg-gray-200 rounded border border-gray-300"></div></div><div><div class="h-1.5 bg-gray-300 rounded mb-1 w-1/3"></div><div class="h-8 bg-gray-200 rounded border border-gray-300"></div></div></div><div class="h-6 bg-gray-600 rounded mt-2"></div>', 3)),
874
+ d("div", ge, [
875
+ d("div", ye, i(l.$t(e.text)), 1),
876
+ e.count && e.count > 0 ? (r(), s("div", be, i(e.count), 1)) : v("", !0)
954
877
  ])
955
878
  ]));
956
879
  }
957
- }, ye = { class: "h-full w-full flex flex-col" }, be = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, he = { class: "text-xs font-medium text-gray-600" }, pe = {
880
+ }, he = { class: "h-full w-full flex flex-col" }, fe = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, me = { class: "text-xs font-medium text-gray-600" }, pe = {
958
881
  key: 0,
959
882
  class: "text-xs text-gray-500"
960
- }, B = {
883
+ }, I = {
961
884
  __name: "news-skeleton",
962
885
  props: {
963
886
  text: {
@@ -970,18 +893,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
970
893
  }
971
894
  },
972
895
  setup(e) {
973
- return (i, t) => (r(), s("div", ye, [
974
- t[0] || (t[0] = p('<div class="h-4 bg-gray-400 rounded mb-2"></div><div class="flex gap-2 flex-1"><div class="flex-1 space-y-2"><div class="bg-gray-200 rounded p-1.5"><div class="h-8 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-3/4"></div></div><div class="bg-gray-200 rounded p-1.5"><div class="h-8 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-3/4"></div></div></div><div class="w-20 space-y-1"><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div></div></div>', 2)),
975
- d("div", be, [
976
- d("div", he, a(i.$t(e.text)), 1),
977
- e.count && e.count > 0 ? (r(), s("div", pe, a(e.count), 1)) : g("", !0)
896
+ return (l, t) => (r(), s("div", he, [
897
+ t[0] || (t[0] = g('<div class="h-4 bg-gray-400 rounded mb-2"></div><div class="flex gap-2 flex-1"><div class="flex-1 space-y-2"><div class="bg-gray-200 rounded p-1.5"><div class="h-8 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-3/4"></div></div><div class="bg-gray-200 rounded p-1.5"><div class="h-8 bg-gray-300 rounded mb-1"></div><div class="h-1.5 bg-gray-400 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-3/4"></div></div></div><div class="w-20 space-y-1"><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div><div class="border-b border-gray-300 pb-1"><div class="h-1 bg-gray-300 rounded mb-1"></div><div class="h-1 bg-gray-300 rounded w-4/5"></div></div></div></div>', 2)),
898
+ d("div", fe, [
899
+ d("div", me, i(l.$t(e.text)), 1),
900
+ e.count && e.count > 0 ? (r(), s("div", pe, i(e.count), 1)) : v("", !0)
978
901
  ])
979
902
  ]));
980
903
  }
981
- }, xe = { class: "h-full w-full flex flex-col" }, fe = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, me = { class: "text-xs font-medium text-gray-600" }, we = {
904
+ }, we = { class: "h-full w-full flex flex-col" }, ke = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, $e = { class: "text-xs font-medium text-gray-600" }, _e = {
982
905
  key: 0,
983
906
  class: "text-xs text-gray-500"
984
- }, ke = {
907
+ }, Ce = {
985
908
  __name: "team-skeleton",
986
909
  props: {
987
910
  text: {
@@ -994,18 +917,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
994
917
  }
995
918
  },
996
919
  setup(e) {
997
- return (i, t) => (r(), s("div", xe, [
998
- t[0] || (t[0] = p('<div class="space-y-2 flex-1"><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div></div>', 1)),
999
- d("div", fe, [
1000
- d("div", me, a(i.$t(e.text)), 1),
1001
- e.count && e.count > 0 ? (r(), s("div", we, a(e.count), 1)) : g("", !0)
920
+ return (l, t) => (r(), s("div", we, [
921
+ t[0] || (t[0] = g('<div class="space-y-2 flex-1"><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div><div class="flex items-start gap-2"><div class="w-8 h-8 bg-gray-300 rounded flex-shrink-0"></div><div class="flex-1 min-w-0"><div class="h-2 bg-gray-400 rounded mb-1 w-2/3"></div><div class="h-1.5 bg-gray-300 rounded mb-1"></div><div class="flex gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-phone w-2.5 h-2.5 text-gray-400"><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"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-mail w-2.5 h-2.5 text-gray-400"><rect width="20" height="16" x="2" y="4" rx="2"></rect><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clock w-2.5 h-2.5 text-gray-400"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div></div></div></div>', 1)),
922
+ d("div", ke, [
923
+ d("div", $e, i(l.$t(e.text)), 1),
924
+ e.count && e.count > 0 ? (r(), s("div", _e, i(e.count), 1)) : v("", !0)
1002
925
  ])
1003
926
  ]));
1004
927
  }
1005
- }, Ae = { class: "h-full w-full flex flex-col" }, Ce = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, _e = { class: "text-xs font-medium text-gray-600" }, $e = {
928
+ }, Ae = { class: "h-full w-full flex flex-col" }, je = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, qe = { class: "text-xs font-medium text-gray-600" }, Me = {
1006
929
  key: 0,
1007
930
  class: "text-xs text-gray-500"
1008
- }, Q = {
931
+ }, W = {
1009
932
  __name: "usefulLinks-skeleton",
1010
933
  props: {
1011
934
  text: {
@@ -1018,18 +941,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1018
941
  }
1019
942
  },
1020
943
  setup(e) {
1021
- return (i, t) => (r(), s("div", Ae, [
1022
- t[0] || (t[0] = p('<div class="h-4 bg-gray-400 rounded mb-3"></div><div class="grid grid-cols-2 gap-2 flex-1"><div class="space-y-2"><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div></div><div class="space-y-2"><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div></div></div>', 2)),
1023
- d("div", Ce, [
1024
- d("div", _e, a(i.$t(e.text)), 1),
1025
- e.count && e.count > 0 ? (r(), s("div", $e, a(e.count), 1)) : g("", !0)
944
+ return (l, t) => (r(), s("div", Ae, [
945
+ t[0] || (t[0] = g('<div class="h-4 bg-gray-400 rounded mb-3"></div><div class="grid grid-cols-2 gap-2 flex-1"><div class="space-y-2"><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div></div><div class="space-y-2"><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div><div class="flex items-center justify-between p-1.5 border border-gray-300 rounded"><div class="h-1.5 bg-gray-300 rounded flex-1 mr-2"></div><div class="w-2 h-2 bg-gray-400 rounded-full"></div></div></div></div>', 2)),
946
+ d("div", je, [
947
+ d("div", qe, i(l.$t(e.text)), 1),
948
+ e.count && e.count > 0 ? (r(), s("div", Me, i(e.count), 1)) : v("", !0)
1026
949
  ])
1027
950
  ]));
1028
951
  }
1029
- }, Me = { class: "h-full w-full flex flex-col" }, je = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Ee = { class: "text-xs font-medium text-gray-600" }, qe = {
952
+ }, Se = { class: "h-full w-full flex flex-col" }, Ee = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Ve = { class: "text-xs font-medium text-gray-600" }, Be = {
1030
953
  key: 0,
1031
954
  class: "text-xs text-gray-500"
1032
- }, Ve = {
955
+ }, Le = {
1033
956
  __name: "video-skeleton",
1034
957
  props: {
1035
958
  text: {
@@ -1042,18 +965,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1042
965
  }
1043
966
  },
1044
967
  setup(e) {
1045
- return (i, t) => (r(), s("div", Me, [
1046
- t[0] || (t[0] = p('<div class="flex-1 bg-gray-200 rounded relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-10 h-10 bg-gray-400 rounded-full flex items-center justify-center"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-play w-5 h-5 text-white ml-0.5"><polygon points="6 3 20 12 6 21 6 3"></polygon></svg></div></div><div class="absolute bottom-1.5 left-1.5 right-1.5"><div class="h-2 bg-gray-400 rounded mb-1"></div><div class="h-2 bg-gray-400 rounded w-3/4"></div></div></div><div class="mt-2 flex items-center gap-2"><div class="w-5 h-5 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded flex-1"></div></div>', 2)),
1047
- d("div", je, [
1048
- d("div", Ee, a(i.$t(e.text)), 1),
1049
- e.count && e.count > 0 ? (r(), s("div", qe, a(e.count), 1)) : g("", !0)
968
+ return (l, t) => (r(), s("div", Se, [
969
+ t[0] || (t[0] = g('<div class="flex-1 bg-gray-200 rounded relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-10 h-10 bg-gray-400 rounded-full flex items-center justify-center"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-play w-5 h-5 text-white ml-0.5"><polygon points="6 3 20 12 6 21 6 3"></polygon></svg></div></div><div class="absolute bottom-1.5 left-1.5 right-1.5"><div class="h-2 bg-gray-400 rounded mb-1"></div><div class="h-2 bg-gray-400 rounded w-3/4"></div></div></div><div class="mt-2 flex items-center gap-2"><div class="w-5 h-5 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded flex-1"></div></div>', 2)),
970
+ d("div", Ee, [
971
+ d("div", Ve, i(l.$t(e.text)), 1),
972
+ e.count && e.count > 0 ? (r(), s("div", Be, i(e.count), 1)) : v("", !0)
1050
973
  ])
1051
974
  ]));
1052
975
  }
1053
- }, Se = { class: "h-full w-full flex flex-col" }, Be = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Qe = { class: "text-xs font-medium text-gray-600" }, ze = {
976
+ }, Qe = { class: "h-full w-full flex flex-col" }, ze = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Ie = { class: "text-xs font-medium text-gray-600" }, We = {
1054
977
  key: 0,
1055
978
  class: "text-xs text-gray-500"
1056
- }, Ie = {
979
+ }, Ze = {
1057
980
  __name: "about-skeleton",
1058
981
  props: {
1059
982
  text: {
@@ -1066,18 +989,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1066
989
  }
1067
990
  },
1068
991
  setup(e) {
1069
- return (i, t) => (r(), s("div", Se, [
1070
- t[0] || (t[0] = p('<div class="flex flex-1"><div class="flex-1 pr-2"><div class="h-4 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-2 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded w-4/5"></div><div class="h-2 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded w-3/4"></div><div class="h-2 bg-gray-300 rounded"></div></div></div><div class="w-16 h-20 bg-gray-200 rounded flex items-center justify-center"><div class="w-6 h-6 bg-gray-300 rounded-full"></div></div></div>', 1)),
1071
- d("div", Be, [
1072
- d("div", Qe, a(i.$t(e.text)), 1),
1073
- e.count && e.count > 0 ? (r(), s("div", ze, a(e.count), 1)) : g("", !0)
992
+ return (l, t) => (r(), s("div", Qe, [
993
+ t[0] || (t[0] = g('<div class="flex flex-1"><div class="flex-1 pr-2"><div class="h-4 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-2 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded w-4/5"></div><div class="h-2 bg-gray-300 rounded"></div><div class="h-2 bg-gray-300 rounded w-3/4"></div><div class="h-2 bg-gray-300 rounded"></div></div></div><div class="w-16 h-20 bg-gray-200 rounded flex items-center justify-center"><div class="w-6 h-6 bg-gray-300 rounded-full"></div></div></div>', 1)),
994
+ d("div", ze, [
995
+ d("div", Ie, i(l.$t(e.text)), 1),
996
+ e.count && e.count > 0 ? (r(), s("div", We, i(e.count), 1)) : v("", !0)
1074
997
  ])
1075
998
  ]));
1076
999
  }
1077
- }, Le = { class: "h-full w-full flex flex-col" }, We = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Ze = { class: "text-xs font-medium text-gray-600" }, Ge = {
1000
+ }, Ge = { class: "h-full w-full flex flex-col" }, Ne = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Fe = { class: "text-xs font-medium text-gray-600" }, Te = {
1078
1001
  key: 0,
1079
1002
  class: "text-xs text-gray-500"
1080
- }, Fe = {
1003
+ }, Re = {
1081
1004
  __name: "slider-skeleton",
1082
1005
  props: {
1083
1006
  text: {
@@ -1090,18 +1013,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1090
1013
  }
1091
1014
  },
1092
1015
  setup(e) {
1093
- return (i, t) => (r(), s("div", Le, [
1094
- t[0] || (t[0] = p('<div class="flex-1 bg-gray-200 rounded mb-2 relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-12 h-8 bg-gray-300 rounded"></div></div><div class="absolute left-1 top-1/2 transform -translate-y-1/2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-left w-4 h-4 text-gray-400"><path d="m15 18-6-6 6-6"></path></svg></div><div class="absolute right-1 top-1/2 transform -translate-y-1/2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right w-4 h-4 text-gray-400"><path d="m9 18 6-6-6-6"></path></svg></div></div><div class="h-3 bg-gray-300 rounded mb-2"></div><div class="h-6 w-20 bg-gray-400 rounded"></div><div class="flex justify-center gap-1 mt-2"><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div></div>', 4)),
1095
- d("div", We, [
1096
- d("div", Ze, a(i.$t(e.text)), 1),
1097
- e.count && e.count > 0 ? (r(), s("div", Ge, a(e.count), 1)) : g("", !0)
1016
+ return (l, t) => (r(), s("div", Ge, [
1017
+ t[0] || (t[0] = g('<div class="flex-1 bg-gray-200 rounded mb-2 relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-12 h-8 bg-gray-300 rounded"></div></div><div class="absolute left-1 top-1/2 transform -translate-y-1/2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-left w-4 h-4 text-gray-400"><path d="m15 18-6-6 6-6"></path></svg></div><div class="absolute right-1 top-1/2 transform -translate-y-1/2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right w-4 h-4 text-gray-400"><path d="m9 18 6-6-6-6"></path></svg></div></div><div class="h-3 bg-gray-300 rounded mb-2"></div><div class="h-6 w-20 bg-gray-400 rounded"></div><div class="flex justify-center gap-1 mt-2"><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 bg-gray-300 rounded-full"></div></div>', 4)),
1018
+ d("div", Ne, [
1019
+ d("div", Fe, i(l.$t(e.text)), 1),
1020
+ e.count && e.count > 0 ? (r(), s("div", Te, i(e.count), 1)) : v("", !0)
1098
1021
  ])
1099
1022
  ]));
1100
1023
  }
1101
- }, Te = { class: "h-full flex flex-col" }, Ne = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Re = { class: "text-xs font-medium text-gray-600" }, Ye = {
1024
+ }, Ye = { class: "h-full flex flex-col" }, Ue = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, De = { class: "text-xs font-medium text-gray-600" }, Je = {
1102
1025
  key: 0,
1103
1026
  class: "text-xs text-gray-500"
1104
- }, Ue = {
1027
+ }, Ke = {
1105
1028
  __name: "infoLine-skeleton",
1106
1029
  props: {
1107
1030
  text: {
@@ -1114,18 +1037,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1114
1037
  }
1115
1038
  },
1116
1039
  setup(e) {
1117
- return (i, t) => (r(), s("div", Te, [
1118
- t[0] || (t[0] = p('<div class="flex-1 bg-gray-200 rounded relative overflow-hidden"><div class="absolute inset-0 flex items-center"><div class="flex gap-8 whitespace-nowrap animate-pulse"><div class="h-3 bg-gray-400 rounded w-32"></div><div class="h-3 bg-gray-300 rounded w-24"></div><div class="h-3 bg-gray-400 rounded w-40"></div><div class="h-3 bg-gray-300 rounded w-28"></div><div class="h-3 bg-gray-400 rounded w-36"></div><div class="h-3 bg-gray-300 rounded w-20"></div></div></div><div class="absolute top-2 left-2 right-2 flex justify-between items-center"><div class="w-2 h-2 bg-gray-500 rounded-full"></div><div class="w-2 h-2 bg-gray-500 rounded-full"></div></div></div>', 1)),
1119
- d("div", Ne, [
1120
- d("div", Re, a(i.$t(e.text)), 1),
1121
- e.count && e.count > 0 ? (r(), s("div", Ye, a(e.count), 1)) : g("", !0)
1040
+ return (l, t) => (r(), s("div", Ye, [
1041
+ t[0] || (t[0] = g('<div class="flex-1 bg-gray-200 rounded relative overflow-hidden"><div class="absolute inset-0 flex items-center"><div class="flex gap-8 whitespace-nowrap animate-pulse"><div class="h-3 bg-gray-400 rounded w-32"></div><div class="h-3 bg-gray-300 rounded w-24"></div><div class="h-3 bg-gray-400 rounded w-40"></div><div class="h-3 bg-gray-300 rounded w-28"></div><div class="h-3 bg-gray-400 rounded w-36"></div><div class="h-3 bg-gray-300 rounded w-20"></div></div></div><div class="absolute top-2 left-2 right-2 flex justify-between items-center"><div class="w-2 h-2 bg-gray-500 rounded-full"></div><div class="w-2 h-2 bg-gray-500 rounded-full"></div></div></div>', 1)),
1042
+ d("div", Ue, [
1043
+ d("div", De, i(l.$t(e.text)), 1),
1044
+ e.count && e.count > 0 ? (r(), s("div", Je, i(e.count), 1)) : v("", !0)
1122
1045
  ])
1123
1046
  ]));
1124
1047
  }
1125
- }, De = { class: "h-full flex flex-col" }, Je = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Ke = { class: "text-xs font-medium text-gray-600" }, Oe = {
1048
+ }, Oe = { class: "h-full flex flex-col" }, Pe = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, He = { class: "text-xs font-medium text-gray-600" }, Xe = {
1126
1049
  key: 0,
1127
1050
  class: "text-xs text-gray-500"
1128
- }, He = {
1051
+ }, et = {
1129
1052
  __name: "tabs-skeleton",
1130
1053
  props: {
1131
1054
  text: {
@@ -1138,18 +1061,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1138
1061
  }
1139
1062
  },
1140
1063
  setup(e) {
1141
- return (i, t) => (r(), s("div", De, [
1142
- t[0] || (t[0] = p('<div class="h-2 bg-gray-300 rounded mb-2"></div><div class="flex gap-1 mb-3"><div class="h-4 w-16 bg-gray-400 rounded"></div><div class="h-4 w-16 bg-gray-200 rounded"></div></div><div class="space-y-2 flex-1"><div class="h-2 bg-gray-300 rounded w-5/6"></div><div class="h-2 bg-gray-300 rounded"></div><div class="space-y-1 mt-3"><div class="flex items-center gap-2"><div class="w-2 h-2 bg-gray-400 rounded-full"></div><div class="h-1.5 bg-gray-300 rounded w-20"></div></div><div class="flex items-center gap-2"><div class="w-2 h-2 bg-gray-400 rounded-full"></div><div class="h-1.5 bg-gray-300 rounded w-16"></div></div></div></div>', 3)),
1143
- d("div", Je, [
1144
- d("div", Ke, a(i.$t(e.text)), 1),
1145
- e.count && e.count > 0 ? (r(), s("div", Oe, a(e.count), 1)) : g("", !0)
1064
+ return (l, t) => (r(), s("div", Oe, [
1065
+ t[0] || (t[0] = g('<div class="h-2 bg-gray-300 rounded mb-2"></div><div class="flex gap-1 mb-3"><div class="h-4 w-16 bg-gray-400 rounded"></div><div class="h-4 w-16 bg-gray-200 rounded"></div></div><div class="space-y-2 flex-1"><div class="h-2 bg-gray-300 rounded w-5/6"></div><div class="h-2 bg-gray-300 rounded"></div><div class="space-y-1 mt-3"><div class="flex items-center gap-2"><div class="w-2 h-2 bg-gray-400 rounded-full"></div><div class="h-1.5 bg-gray-300 rounded w-20"></div></div><div class="flex items-center gap-2"><div class="w-2 h-2 bg-gray-400 rounded-full"></div><div class="h-1.5 bg-gray-300 rounded w-16"></div></div></div></div>', 3)),
1066
+ d("div", Pe, [
1067
+ d("div", He, i(l.$t(e.text)), 1),
1068
+ e.count && e.count > 0 ? (r(), s("div", Xe, i(e.count), 1)) : v("", !0)
1146
1069
  ])
1147
1070
  ]));
1148
1071
  }
1149
- }, Pe = { class: "h-full flex flex-col" }, Xe = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, et = { class: "text-xs font-medium text-gray-600" }, tt = {
1072
+ }, tt = { class: "h-full flex flex-col" }, dt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, rt = { class: "text-xs font-medium text-gray-600" }, st = {
1150
1073
  key: 0,
1151
1074
  class: "text-xs text-gray-500"
1152
- }, z = {
1075
+ }, Z = {
1153
1076
  __name: "documents-skeleton",
1154
1077
  props: {
1155
1078
  text: {
@@ -1162,18 +1085,18 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1162
1085
  }
1163
1086
  },
1164
1087
  setup(e) {
1165
- return (i, t) => (r(), s("div", Pe, [
1166
- t[0] || (t[0] = p('<div class="h-4 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5 flex-1"><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div></div>', 2)),
1167
- d("div", Xe, [
1168
- d("div", et, a(i.$t(e.text)), 1),
1169
- e.count && e.count > 0 ? (r(), s("div", tt, a(e.count), 1)) : g("", !0)
1088
+ return (l, t) => (r(), s("div", tt, [
1089
+ t[0] || (t[0] = g('<div class="h-4 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5 flex-1"><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div><div class="flex items-center justify-between p-1.5 border-b border-gray-200"><div class="flex items-center gap-2"><div class="w-3 h-3 bg-gray-400 rounded-full"></div><div class="h-2 bg-gray-300 rounded flex-1 w-28"></div></div><div class="flex gap-1.5"><div class="w-3 h-3 bg-gray-200 rounded"></div><div class="w-3 h-3 bg-gray-200 rounded"></div></div></div></div>', 2)),
1090
+ d("div", dt, [
1091
+ d("div", rt, i(l.$t(e.text)), 1),
1092
+ e.count && e.count > 0 ? (r(), s("div", st, i(e.count), 1)) : v("", !0)
1170
1093
  ])
1171
1094
  ]));
1172
1095
  }
1173
- }, rt = { class: "h-full flex flex-col" }, dt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, lt = { class: "text-xs font-medium text-gray-600" }, st = {
1096
+ }, lt = { class: "h-full flex flex-col" }, it = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, at = { class: "text-xs font-medium text-gray-600" }, ot = {
1174
1097
  key: 0,
1175
1098
  class: "text-xs text-gray-500"
1176
- }, it = {
1099
+ }, nt = {
1177
1100
  __name: "body-skeleton",
1178
1101
  props: {
1179
1102
  text: {
@@ -1186,70 +1109,491 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1186
1109
  }
1187
1110
  },
1188
1111
  setup(e) {
1189
- return (i, t) => (r(), s("div", rt, [
1190
- t[0] || (t[0] = p('<div class="grid grid-cols-3 gap-2 flex-1"><div class="flex flex-col"><div class="h-3 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div></div></div><div class="flex flex-col"><div class="h-3 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div></div></div><div class="flex flex-col"><div class="h-3 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div></div></div></div>', 1)),
1191
- d("div", dt, [
1192
- d("div", lt, a(i.$t(e.text)), 1),
1193
- e.count && e.count > 0 ? (r(), s("div", st, a(e.count), 1)) : g("", !0)
1112
+ return (l, t) => (r(), s("div", lt, [
1113
+ t[0] || (t[0] = g('<div class="grid grid-cols-3 gap-2 flex-1"><div class="flex flex-col"><div class="h-3 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div></div></div><div class="flex flex-col"><div class="h-3 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div></div></div><div class="flex flex-col"><div class="h-3 bg-gray-400 rounded mb-2"></div><div class="space-y-1.5"><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div><div class="h-4 bg-gray-200 rounded border border-gray-300 p-1.5"><div class="h-1.5 bg-gray-300 rounded w-3/4"></div></div></div></div></div>', 1)),
1114
+ d("div", it, [
1115
+ d("div", at, i(l.$t(e.text)), 1),
1116
+ e.count && e.count > 0 ? (r(), s("div", ot, i(e.count), 1)) : v("", !0)
1194
1117
  ])
1195
1118
  ]));
1196
1119
  }
1197
- }, $ = {
1198
- faq: le,
1199
- banner: S,
1200
- slider: Fe,
1201
- video: Ve,
1202
- about: Ie,
1203
- cards: V,
1204
- usefulLinks: Q,
1205
- team: ke,
1206
- news: B,
1207
- form: ge,
1208
- tabs: He,
1209
- vertical_tabs: B,
1210
- documents: z,
1211
- infoLine: Ue,
1212
- body: it,
1213
- photoGrid: V,
1214
- interested: Q,
1215
- contact: z,
1216
- iframe: S
1217
- }, at = { class: "grid grid-cols-1 md:grid-cols-1 lg:grid-cols-2 2xl:grid-cols-3 gap-4" }, ot = ["onClick"], nt = { class: "wireframe-block h-[240px] !p-4 border-2 border-dashed bg-white relative overflow-hidden transition-all rounded-lg shadow-sm border-gray-300 hover:border-gray-400 cursor-pointer" }, ct = ["src"], ut = {
1218
- __name: "vs-form-reference-choce",
1120
+ }, ct = { class: "h-full w-full flex flex-col" }, ut = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, vt = { class: "text-xs font-medium text-gray-600" }, gt = {
1121
+ key: 0,
1122
+ class: "text-xs text-gray-500"
1123
+ }, yt = {
1124
+ __name: "image-slider-skeleton",
1125
+ props: {
1126
+ text: {
1127
+ type: String,
1128
+ required: !0
1129
+ },
1130
+ count: {
1131
+ type: Number,
1132
+ required: !0
1133
+ }
1134
+ },
1135
+ setup(e) {
1136
+ return (l, t) => (r(), s("div", ct, [
1137
+ t[0] || (t[0] = g('<div class="flex-1 flex gap-2"><div class="flex-1 bg-gray-200 rounded mb-2 relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-12 h-8 bg-gray-300 rounded"></div></div></div><div class="bg-gray-200 rounded mb-2 relative w-[25px]"></div></div><div class="h-6 w-[40%] bg-gray-300 rounded"></div><div class="flex justify-start gap-1 mt-2"><div class="w-1.5 h-1.5 bg-gray-400 rounded-full"></div><div class="w-1.5 h-1.5 border border-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 border border-gray-300 rounded-full"></div></div>', 3)),
1138
+ d("div", ut, [
1139
+ d("div", vt, i(l.$t(e.text)), 1),
1140
+ e.count && e.count > 0 ? (r(), s("div", gt, i(e.count), 1)) : v("", !0)
1141
+ ])
1142
+ ]));
1143
+ }
1144
+ }, bt = { class: "h-full w-full flex flex-col" }, xt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, ht = { class: "text-xs font-medium text-gray-600" }, ft = {
1145
+ key: 0,
1146
+ class: "text-xs text-gray-500"
1147
+ }, mt = {
1148
+ __name: "video-slider-skeleton",
1149
+ props: {
1150
+ text: {
1151
+ type: String,
1152
+ required: !0
1153
+ },
1154
+ count: {
1155
+ type: Number,
1156
+ required: !0
1157
+ }
1158
+ },
1159
+ setup(e) {
1160
+ return (l, t) => (r(), s("div", bt, [
1161
+ t[0] || (t[0] = g('<div class="flex-1 flex gap-2"><div class="flex-1 bg-gray-200 rounded mb-2 relative"><div class="absolute inset-0 flex items-center justify-center"><div class="w-10 h-10 bg-gray-400 rounded-full flex items-center justify-center"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-play w-5 h-5 text-white ml-0.5"><polygon points="6 3 20 12 6 21 6 3"></polygon></svg></div></div></div><div class="bg-gray-200 rounded mb-2 relative w-[25px]"></div></div><div class="flex justify-start gap-1 mt-2"><div class="w-1.5 h-1.5 bg-gray-400 rounded-full"></div><div class="w-1.5 h-1.5 border border-gray-300 rounded-full"></div><div class="w-1.5 h-1.5 border border-gray-300 rounded-full"></div></div>', 2)),
1162
+ d("div", xt, [
1163
+ d("div", ht, i(l.$t(e.text)), 1),
1164
+ e.count && e.count > 0 ? (r(), s("div", ft, i(e.count), 1)) : v("", !0)
1165
+ ])
1166
+ ]));
1167
+ }
1168
+ }, pt = { class: "h-full flex flex-col relative" }, wt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, kt = { class: "text-xs font-medium text-gray-600" }, $t = {
1169
+ key: 0,
1170
+ class: "text-xs text-gray-500"
1171
+ }, _t = {
1172
+ __name: "detailed-banner-skeleton",
1173
+ props: {
1174
+ text: {
1175
+ type: String,
1176
+ required: !0
1177
+ },
1178
+ count: {
1179
+ type: Number,
1180
+ required: !0
1181
+ }
1182
+ },
1183
+ setup(e) {
1184
+ return (l, t) => (r(), s("div", pt, [
1185
+ t[0] || (t[0] = g('<div class="bg-gray-300 h-[60%] w-full p-4 flex flex-col gap-2"></div><div class="bg-white h-[60%] w-[calc(100%-30px)] left-4 mt-[-50px] relative p-4"><div class="space-y-1.5"><div class="h-2 bg-gray-300 rounded mb-3"></div><div class="h-1.5 bg-gray-300 rounded"></div><div class="h-1.5 bg-gray-300 rounded w-4/5"></div><div class="h-1.5 bg-gray-300 rounded"></div><div class="h-1.5 bg-gray-300 rounded w-3/4"></div><div class="h-1.5 bg-gray-300 rounded"></div></div></div>', 2)),
1186
+ d("div", wt, [
1187
+ d("div", kt, i(l.$t(`cms.builder.${e.text}`)), 1),
1188
+ e.count && e.count > 0 ? (r(), s("div", $t, i(e.count), 1)) : v("", !0)
1189
+ ])
1190
+ ]));
1191
+ }
1192
+ }, Ct = { class: "h-full w-[80%] mx-auto flex flex-col" }, At = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, jt = { class: "text-xs font-medium text-gray-600" }, qt = {
1193
+ key: 0,
1194
+ class: "text-xs text-gray-500"
1195
+ }, Mt = {
1196
+ __name: "cards-reverse-skeleton",
1197
+ props: {
1198
+ text: {
1199
+ type: String,
1200
+ required: !0
1201
+ },
1202
+ count: {
1203
+ type: Number,
1204
+ required: !0
1205
+ }
1206
+ },
1207
+ setup(e) {
1208
+ return (l, t) => (r(), s("div", Ct, [
1209
+ t[0] || (t[0] = g('<div class="flex-1 flex flex-col gap-2"><div class="grid grid-cols-1 md:grid-cols-2 gap-4 items-center"><div class="aspect-[2/1] bg-gray-300 rounded"></div><div class="flex flex-col gap-2"><div class="h-1.5 bg-gray-400 rounded w-1/3"></div><div class="space-y-1"><div class="h-1.5 bg-gray-200 rounded w-full"></div><div class="h-1.5 bg-gray-200 rounded w-5/6"></div><div class="h-1.5 bg-gray-200 rounded w-4/5"></div></div><div class="h-2 bg-gray-400 rounded w-1/5"></div></div></div><div class="grid grid-cols-1 md:grid-cols-2 gap-6 items-center"><div class="flex flex-col gap-2"><div class="h-1.5 bg-gray-400 rounded w-1/3"></div><div class="space-y-1"><div class="h-1.5 bg-gray-200 rounded w-full"></div><div class="h-1.5 bg-gray-200 rounded w-5/6"></div><div class="h-1.5 bg-gray-200 rounded w-4/5"></div></div><div class="h-2 bg-gray-400 rounded w-1/5"></div></div><div class="aspect-[2/1] bg-gray-300 rounded order-1 md:order-2"></div></div></div>', 1)),
1210
+ d("div", At, [
1211
+ d("div", jt, i(l.$t(e.text)), 1),
1212
+ e.count && e.count > 0 ? (r(), s("div", qt, i(e.count), 1)) : v("", !0)
1213
+ ])
1214
+ ]));
1215
+ }
1216
+ }, St = { class: "h-full w-full flex flex-col" }, Et = { class: "border border-gray-300 rounded overflow-hidden" }, Vt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Bt = { class: "text-xs font-medium text-gray-600" }, Lt = {
1217
+ key: 0,
1218
+ class: "text-xs text-gray-500"
1219
+ }, Qt = 5, zt = {
1220
+ __name: "table-skeleton",
1221
+ props: {
1222
+ text: {
1223
+ type: String,
1224
+ required: !0
1225
+ },
1226
+ count: {
1227
+ type: Number,
1228
+ required: !0
1229
+ }
1230
+ },
1231
+ setup(e) {
1232
+ return (l, t) => (r(), s("div", St, [
1233
+ t[3] || (t[3] = d("div", { class: "mb-2" }, [
1234
+ d("div", { class: "h-2 bg-gray-400 rounded w-40" })
1235
+ ], -1)),
1236
+ d("div", Et, [
1237
+ t[2] || (t[2] = g('<div class="flex border-b border-gray-300 last:border-b-0"><div class="w-2/5 px-4 py-2 bg-gray-400 border-r border-gray-300"><div class="h-2.5 bg-gray-300 rounded w-full max-w-[12rem]"></div></div><div class="flex-1 px-4 py-2 bg-gray-400"><div class="h-2.5 bg-gray-300 rounded w-16"></div></div></div>', 1)),
1238
+ (r(), s($, null, _(Qt, (o, n) => d("div", {
1239
+ key: n,
1240
+ class: "flex border-b border-gray-300 last:border-b-0"
1241
+ }, [
1242
+ d("div", {
1243
+ class: C(["w-2/5 px-4 py-2 border-r border-gray-300", n % 2 === 0 ? "bg-gray-200" : "bg-gray-100"])
1244
+ }, [...t[0] || (t[0] = [
1245
+ d("div", { class: "h-2.5 bg-gray-300 rounded w-full max-w-[12rem]" }, null, -1)
1246
+ ])], 2),
1247
+ d("div", {
1248
+ class: C(["flex-1 px-4 py-2", n % 2 === 0 ? "bg-gray-200" : "bg-gray-100"])
1249
+ }, [...t[1] || (t[1] = [
1250
+ d("div", { class: "h-2.5 bg-gray-300 rounded w-16" }, null, -1)
1251
+ ])], 2)
1252
+ ])), 64))
1253
+ ]),
1254
+ d("div", Vt, [
1255
+ d("div", Bt, i(l.$t(e.text)), 1),
1256
+ e.count && e.count > 0 ? (r(), s("div", Lt, i(e.count), 1)) : v("", !0)
1257
+ ])
1258
+ ]));
1259
+ }
1260
+ }, It = { class: "h-full w-full flex flex-col min-h-0" }, Wt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Zt = { class: "text-xs font-medium text-gray-600" }, Gt = {
1261
+ key: 0,
1262
+ class: "text-xs text-gray-500"
1263
+ }, Nt = {
1264
+ __name: "file-download-skeleton",
1265
+ props: {
1266
+ text: {
1267
+ type: String,
1268
+ required: !0
1269
+ },
1270
+ count: {
1271
+ type: Number,
1272
+ required: !0
1273
+ }
1274
+ },
1275
+ setup(e) {
1276
+ return (l, t) => (r(), s("div", It, [
1277
+ t[0] || (t[0] = g('<div class="w-full flex-1 max-w-[70%] mx-auto flex flex-row gap-3 items-center min-h-0 min-w-0"><div class="shrink-0 flex justify-center items-center"><div class="relative w-[90px] h-[100px] mr-[10px]"><div class="absolute w-[60px] h-[80px] bg-gray-300 rounded"></div><div class="absolute w-[60px] h-[80px] bg-gray-200 rounded border border-gray-300 top-[12px] left-[12px] rotate-[-5deg]"></div></div></div><div class="flex-1 flex flex-col gap-2 min-w-0 overflow-hidden"><div class="h-3.5 bg-gray-400 rounded w-full max-w-[180px]"></div><div class="space-y-1"><div class="h-1.5 bg-gray-300 rounded w-20"></div><div class="h-1.5 bg-gray-300 rounded w-16"></div></div><div class="h-4 bg-gray-300 rounded w-24"></div></div></div>', 1)),
1278
+ d("div", Wt, [
1279
+ d("div", Zt, i(l.$t(e.text)), 1),
1280
+ e.count && e.count > 0 ? (r(), s("div", Gt, i(e.count), 1)) : v("", !0)
1281
+ ])
1282
+ ]));
1283
+ }
1284
+ }, Ft = { class: "h-full flex flex-col text-left" }, Tt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Rt = { class: "text-xs font-medium text-gray-600" }, Yt = {
1285
+ key: 0,
1286
+ class: "text-xs text-gray-500"
1287
+ }, Ut = {
1288
+ __name: "body-content-skeleton",
1219
1289
  props: {
1290
+ text: {
1291
+ type: String,
1292
+ default: ""
1293
+ },
1294
+ count: {
1295
+ type: Number,
1296
+ default: 0
1297
+ }
1298
+ },
1299
+ setup(e) {
1300
+ return (l, t) => (r(), s("div", Ft, [
1301
+ t[0] || (t[0] = g('<div class="mb-3"><div class="h-4 bg-gray-400 rounded w-3/4 max-w-md"></div></div><div class="space-y-1 mb-3"><div class="h-2 bg-gray-300 rounded w-full"></div><div class="flex gap-2 items-center"><div class="h-1.5 bg-gray-400 rounded w-24"></div><div class="h-1.5 bg-gray-300 rounded flex-1"></div></div></div><div class="space-y-2 pl-1 mb-3"><div class="flex items-center gap-3"><div class="w-1.5 h-1.5 bg-gray-400 rounded-full shrink-0"></div><div class="h-2 bg-gray-300 rounded w-3/4 max-w-sm"></div></div><div class="flex items-center gap-3"><div class="w-1.5 h-1.5 bg-gray-400 rounded-full shrink-0"></div><div class="h-2 bg-gray-300 rounded w-2/4 max-w-xs"></div></div><div class="flex items-center gap-3"><div class="w-1.5 h-1.5 bg-gray-400 rounded-full shrink-0"></div><div class="h-2 bg-gray-300 rounded w-1/4 max-w-md"></div></div><div class="flex items-center gap-3"><div class="w-1.5 h-1.5 bg-gray-400 rounded-full shrink-0"></div><div class="h-2 bg-gray-300 rounded w-3/4 max-w-sm"></div></div></div><div class="space-y-2 mb-2"><div class="h-1.5 bg-gray-300 rounded w-full"></div><div class="flex gap-2 items-center"><div class="h-1.5 bg-gray-400 rounded flex-1 max-w-[85%]"></div><div class="h-1.5 bg-gray-300 rounded w-1/4"></div></div><div class="h-1.5 bg-gray-300 rounded w-4/5"></div></div>', 4)),
1302
+ d("div", Tt, [
1303
+ d("div", Rt, i(l.$t(e.text)), 1),
1304
+ e.count && e.count > 0 ? (r(), s("div", Yt, i(e.count), 1)) : v("", !0)
1305
+ ])
1306
+ ]));
1307
+ }
1308
+ }, Dt = { class: "h-full flex flex-col" }, Jt = { class: "space-y-1.5 flex-1 flex gap-6" }, Kt = { class: "flex-1 space-y-1.5" }, Ot = { class: "flex-1 space-y-1.5" }, Pt = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-300" }, Ht = { class: "text-xs font-medium text-gray-600" }, Xt = {
1309
+ key: 0,
1310
+ class: "text-xs text-gray-500"
1311
+ }, ed = {
1312
+ __name: "column-list-skeleton",
1313
+ props: {
1314
+ text: {
1315
+ type: String,
1316
+ required: !0
1317
+ },
1318
+ count: {
1319
+ type: Number,
1320
+ required: !0
1321
+ }
1322
+ },
1323
+ setup(e) {
1324
+ return (l, t) => (r(), s("div", Dt, [
1325
+ t[2] || (t[2] = d("div", { class: "h-4 bg-gray-400 rounded mb-3 w-40" }, null, -1)),
1326
+ d("div", Jt, [
1327
+ d("div", Kt, [
1328
+ (r(), s($, null, _(5, (o) => d("div", {
1329
+ key: "l-" + o,
1330
+ class: "flex items-center gap-2"
1331
+ }, [
1332
+ t[0] || (t[0] = d("div", { class: "w-1.5 h-1.5 rounded-full bg-gray-400 shrink-0 mt-1.5" }, null, -1)),
1333
+ d("div", {
1334
+ class: C(["h-3 bg-gray-300 rounded flex-1", o === 1 ? "max-w-full" : "w-28"])
1335
+ }, null, 2)
1336
+ ])), 64))
1337
+ ]),
1338
+ d("div", Ot, [
1339
+ (r(), s($, null, _(4, (o) => d("div", {
1340
+ key: "r-" + o,
1341
+ class: "flex items-center gap-2"
1342
+ }, [
1343
+ t[1] || (t[1] = d("div", { class: "w-1.5 h-1.5 rounded-full bg-gray-400 shrink-0 mt-1.5" }, null, -1)),
1344
+ d("div", {
1345
+ class: C(["h-3 bg-gray-300 rounded flex-1", o === 1 ? "max-w-full" : "w-28"])
1346
+ }, null, 2)
1347
+ ])), 64))
1348
+ ])
1349
+ ]),
1350
+ d("div", Pt, [
1351
+ d("div", Ht, i(l.$t(e.text)), 1),
1352
+ e.count && e.count > 0 ? (r(), s("div", Xt, i(e.count), 1)) : v("", !0)
1353
+ ])
1354
+ ]));
1355
+ }
1356
+ }, td = { class: "h-full flex flex-col" }, dd = { class: "flex-1 flex flex-col rounded py-4 px-5 bg-gray-400 w-full max-w-[70%] mx-auto" }, rd = { class: "space-y-2 flex-1" }, sd = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-200" }, ld = { class: "text-xs font-medium text-gray-600" }, id = {
1357
+ key: 0,
1358
+ class: "text-xs text-gray-500"
1359
+ }, ad = {
1360
+ __name: "list-skeleton",
1361
+ props: {
1362
+ text: {
1363
+ type: String,
1364
+ required: !0
1365
+ },
1366
+ count: {
1367
+ type: Number,
1368
+ required: !0
1369
+ }
1370
+ },
1371
+ setup(e) {
1372
+ return (l, t) => (r(), s("div", td, [
1373
+ d("div", dd, [
1374
+ t[1] || (t[1] = d("div", { class: "h-4 bg-gray-300 rounded mb-2.5 w-40 shrink-0" }, null, -1)),
1375
+ d("div", rd, [
1376
+ (r(), s($, null, _(5, (o) => d("div", {
1377
+ key: o,
1378
+ class: "flex items-center gap-2"
1379
+ }, [
1380
+ t[0] || (t[0] = d("svg", {
1381
+ xmlns: "http://www.w3.org/2000/svg",
1382
+ width: "20",
1383
+ height: "20",
1384
+ viewBox: "0 0 24 24",
1385
+ fill: "none",
1386
+ stroke: "currentColor",
1387
+ "stroke-width": "2",
1388
+ "stroke-linecap": "round",
1389
+ "stroke-linejoin": "round",
1390
+ class: "shrink-0 text-gray-200 w-3 h-3",
1391
+ "aria-hidden": "true"
1392
+ }, [
1393
+ d("circle", {
1394
+ cx: "12",
1395
+ cy: "12",
1396
+ r: "10"
1397
+ }),
1398
+ d("path", { d: "m9 12 2 2 4-4" })
1399
+ ], -1)),
1400
+ d("div", {
1401
+ class: C(["h-2.5 bg-gray-200 rounded flex-1", o === 1 ? "max-w-[12rem]" : o === 3 ? "w-28" : "w-20"])
1402
+ }, null, 2)
1403
+ ])), 64))
1404
+ ])
1405
+ ]),
1406
+ d("div", sd, [
1407
+ d("div", ld, i(l.$t(e.text)), 1),
1408
+ e.count && e.count > 0 ? (r(), s("div", id, i(e.count), 1)) : v("", !0)
1409
+ ])
1410
+ ]));
1411
+ }
1412
+ }, od = { class: "h-full flex flex-col" }, nd = { class: "flex-1 flex flex-col rounded py-4 px-5 bg-gray-100 w-full max-w-[70%] mx-auto" }, cd = { class: "space-y-2 flex-1" }, ud = { class: "flex justify-between items-center mt-2 pt-2 border-t border-gray-200" }, vd = { class: "text-xs font-medium text-gray-600" }, gd = {
1413
+ key: 0,
1414
+ class: "text-xs text-gray-500"
1415
+ }, yd = {
1416
+ __name: "list-link-skeleton",
1417
+ props: {
1418
+ text: {
1419
+ type: String,
1420
+ required: !0
1421
+ },
1422
+ count: {
1423
+ type: Number,
1424
+ required: !0
1425
+ }
1426
+ },
1427
+ setup(e) {
1428
+ return (l, t) => (r(), s("div", od, [
1429
+ d("div", nd, [
1430
+ t[1] || (t[1] = d("div", { class: "h-4 bg-gray-300 rounded mb-2.5 w-40 shrink-0" }, null, -1)),
1431
+ d("div", cd, [
1432
+ (r(), s($, null, _(5, (o) => d("div", {
1433
+ key: o,
1434
+ class: "flex items-center gap-2"
1435
+ }, [
1436
+ t[0] || (t[0] = d("div", { class: "w-1 h-1 bg-gray-400 rounded-full shrink-0" }, null, -1)),
1437
+ d("div", {
1438
+ class: C(["h-2.5 bg-gray-300 rounded flex-1", o === 1 ? "max-w-[12rem]" : o === 3 ? "w-28" : "w-20"])
1439
+ }, null, 2)
1440
+ ])), 64))
1441
+ ])
1442
+ ]),
1443
+ d("div", ud, [
1444
+ d("div", vd, i(l.$t(e.text)), 1),
1445
+ e.count && e.count > 0 ? (r(), s("div", gd, i(e.count), 1)) : v("", !0)
1446
+ ])
1447
+ ]));
1448
+ }
1449
+ }, S = {
1450
+ faq: ae,
1451
+ banner: z,
1452
+ slider: Re,
1453
+ video: Le,
1454
+ about: Ze,
1455
+ cards: Q,
1456
+ usefulLinks: W,
1457
+ team: Ce,
1458
+ news: I,
1459
+ form: xe,
1460
+ tabs: et,
1461
+ vertical_tabs: I,
1462
+ documents: Z,
1463
+ infoLine: Ke,
1464
+ body: nt,
1465
+ photoGrid: Q,
1466
+ interested: W,
1467
+ contact: Z,
1468
+ iframe: z,
1469
+ imageSlider: yt,
1470
+ videoSlider: mt,
1471
+ detailedBanner: _t,
1472
+ cardsReverse: Mt,
1473
+ table: zt,
1474
+ fileDownload: Nt,
1475
+ bodyContent: Ut,
1476
+ columnList: ed,
1477
+ list: ad,
1478
+ linkList: yd
1479
+ }, bd = { class: "grid grid-cols-1 md:grid-cols-1 lg:grid-cols-2 2xl:grid-cols-3 gap-4" }, xd = ["onClick"], hd = { class: "wireframe-block h-[240px] !p-4 border-2 border-dashed bg-white relative overflow-hidden transition-all rounded-lg shadow-sm border-gray-300 hover:border-gray-400 cursor-pointer" }, fd = ["src"], md = {
1480
+ __name: "vs-form-reference-choce",
1481
+ props: /* @__PURE__ */ E({
1482
+ options: {
1483
+ type: Array,
1484
+ required: !0
1485
+ }
1486
+ }, {
1220
1487
  modelValue: {
1221
1488
  type: String,
1222
1489
  required: !0
1223
1490
  },
1224
1491
  modelModifiers: {}
1225
- },
1492
+ }),
1226
1493
  emits: ["update:modelValue"],
1227
1494
  setup(e) {
1228
- const i = A(e, "modelValue");
1229
- return (t, v) => (r(), s("div", at, [
1230
- (r(!0), s(I, null, R(b(_), (l) => (r(), s("div", {
1231
- key: l.id,
1232
- onClick: (c) => i.value = l.id,
1495
+ const l = j(e, "modelValue");
1496
+ return (t, o) => (r(), s("div", bd, [
1497
+ (r(!0), s($, null, _(e.options, (n) => (r(), s("div", {
1498
+ key: n.id,
1499
+ onClick: (y) => l.value = n.id,
1233
1500
  class: "relative"
1234
1501
  }, [
1235
- d("div", nt, [
1236
- b($)[l.id] ? (r(), k(L(b($)[l.id]), {
1502
+ d("div", hd, [
1503
+ x(S)[n.id] ? (r(), A(G(x(S)[n.id]), {
1237
1504
  key: 0,
1238
- text: l == null ? void 0 : l.text,
1239
- count: (l == null ? void 0 : l.data) || 0
1505
+ text: n == null ? void 0 : n.text,
1506
+ count: (n == null ? void 0 : n.data) || 0
1240
1507
  }, null, 8, ["text", "count"])) : (r(), s("img", {
1241
1508
  key: 1,
1242
- src: b(T),
1509
+ src: x(U),
1243
1510
  alt: "Team collaboration",
1244
1511
  class: "w-full h-full object-cover"
1245
- }, null, 8, ct))
1512
+ }, null, 8, fd))
1246
1513
  ])
1247
- ], 8, ot))), 128))
1514
+ ], 8, xd))), 128))
1248
1515
  ]));
1249
1516
  }
1250
- }, vt = { class: "flex gap-4" }, gt = { class: "text-sm text-gray-500 dark:text-gray-400 border flex items-center h-10 px-4 rounded-lg w-full" }, yt = { class: "flex items-center justify-between w-full p-4 border-t border-gray-200 dark:border-gray-700" }, bt = {
1517
+ }, pd = [
1518
+ {
1519
+ text: "reference.faq",
1520
+ id: "faq"
1521
+ },
1522
+ {
1523
+ text: "reference.banner",
1524
+ id: "banner"
1525
+ },
1526
+ {
1527
+ text: "reference.slider",
1528
+ id: "slider"
1529
+ },
1530
+ {
1531
+ text: "reference.photoGrid",
1532
+ id: "photoGrid"
1533
+ },
1534
+ {
1535
+ text: "reference.video",
1536
+ id: "video"
1537
+ },
1538
+ {
1539
+ text: "reference.about",
1540
+ id: "about"
1541
+ },
1542
+ {
1543
+ text: "reference.cards",
1544
+ id: "cards"
1545
+ },
1546
+ {
1547
+ text: "reference.usefulLinks",
1548
+ id: "usefulLinks"
1549
+ },
1550
+ {
1551
+ text: "reference.team",
1552
+ id: "team"
1553
+ },
1554
+ {
1555
+ text: "reference.body",
1556
+ id: "body"
1557
+ },
1558
+ {
1559
+ text: "reference.news",
1560
+ id: "news"
1561
+ },
1562
+ {
1563
+ text: "reference.form",
1564
+ id: "form"
1565
+ },
1566
+ {
1567
+ text: "reference.tabs",
1568
+ id: "tabs"
1569
+ },
1570
+ {
1571
+ text: "reference.vertical_tabs",
1572
+ id: "vertical_tabs"
1573
+ },
1574
+ {
1575
+ text: "reference.documents",
1576
+ id: "documents"
1577
+ },
1578
+ {
1579
+ text: "reference.infoLine",
1580
+ id: "infoLine"
1581
+ },
1582
+ {
1583
+ text: "reference.interested",
1584
+ id: "interested"
1585
+ },
1586
+ {
1587
+ text: "reference.contact",
1588
+ id: "contact"
1589
+ },
1590
+ {
1591
+ text: "reference.iframe",
1592
+ id: "iframe"
1593
+ }
1594
+ ], wd = { class: "flex gap-4" }, kd = { class: "text-sm text-gray-500 dark:text-gray-400 border flex items-center h-10 px-4 rounded-lg w-full" }, $d = { class: "flex items-center justify-between w-full p-4 border-t border-gray-200 dark:border-gray-700" }, _d = {
1251
1595
  __name: "vs-form-reference-add",
1252
- props: /* @__PURE__ */ M({
1596
+ props: /* @__PURE__ */ E({
1253
1597
  title: {
1254
1598
  type: String,
1255
1599
  required: !0
@@ -1263,88 +1607,90 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1263
1607
  }),
1264
1608
  emits: ["update:modelValue"],
1265
1609
  setup(e) {
1266
- const { t: i } = F();
1267
- q["vs-input-reference"] = At, q["vs-input-tiptap-editor"] = K;
1268
- const t = A(e, "modelValue"), v = m(!1), l = m({}), c = m(null), h = m({}), n = j(() => {
1269
- var u;
1270
- return ((u = N[c.value]) == null ? void 0 : u.schema) || null;
1271
- }), f = async () => {
1272
- if (await l.value.validate()) {
1273
- Z({
1610
+ const { t: l } = Y(), t = N().appContext.config.globalProperties.$settings.cms;
1611
+ L["vs-input-reference"] = Vd, L["vs-input-tiptap-editor"] = H;
1612
+ const o = j(e, "modelValue"), n = w(!1), y = w({}), a = w(null), b = w({}), m = M(() => {
1613
+ var u, c;
1614
+ return ((u = t.sections.find((f) => f.id === a.value)) == null ? void 0 : u.schema) || ((c = D[a.value]) == null ? void 0 : c.schema) || null;
1615
+ }), V = async () => {
1616
+ if (await y.value.validate()) {
1617
+ T({
1274
1618
  type: "warning",
1275
- title: i("cms.common.actions.warning"),
1276
- message: i("cms.builder.editFieldFailed")
1619
+ title: l("cms.common.actions.warning"),
1620
+ message: l("cms.builder.editFieldFailed")
1277
1621
  });
1278
1622
  return;
1279
1623
  }
1280
1624
  try {
1281
- Object.keys(h.value).length !== 0 && (t.value = [
1282
- ...t.value || [],
1625
+ Object.keys(b.value).length !== 0 && (o.value = [
1626
+ ...o.value || [],
1283
1627
  {
1284
- ...h.value,
1628
+ ...b.value,
1285
1629
  id: Math.random().toString(36).substring(2, 15),
1286
- reference_type: c.value
1630
+ reference_type: a.value
1287
1631
  }
1288
- ]), v.value = !1, c.value = null, h.value = {};
1289
- } catch (o) {
1290
- console.log(o);
1632
+ ]), n.value = !1, a.value = null, b.value = {};
1633
+ } catch (c) {
1634
+ console.log(c);
1291
1635
  }
1292
1636
  };
1293
- return E(v, () => {
1294
- v.value || (c.value = null, h.value = {});
1295
- }), (u, o) => (r(), s("div", null, [
1637
+ B(n, () => {
1638
+ n.value || (a.value = null, b.value = {});
1639
+ });
1640
+ const h = M(() => t.sectionsList || pd);
1641
+ return (u, c) => (r(), s("div", null, [
1296
1642
  d("button", {
1297
1643
  type: "button",
1298
1644
  class: "inline-flex items-center px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-md shadow-sm text-sm font-medium text-gray-700 dark:text-gray-200 bg-white dark:bg-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-sky-500",
1299
- onClick: o[0] || (o[0] = (y) => v.value = !v.value)
1300
- }, a(u.$t("cms.builder.create")), 1),
1301
- w(b(W), {
1302
- visible: v.value,
1303
- "onUpdate:visible": o[6] || (o[6] = (y) => v.value = y),
1645
+ onClick: c[0] || (c[0] = (f) => n.value = !n.value)
1646
+ }, i(u.$t("cms.builder.create")), 1),
1647
+ k(x(F), {
1648
+ visible: n.value,
1649
+ "onUpdate:visible": c[6] || (c[6] = (f) => n.value = f),
1304
1650
  position: "right",
1305
1651
  closeClickBackdrop: !1,
1306
- onClose: o[7] || (o[7] = (y) => v.value = !1),
1307
- title: c.value ? u.$t("cms.builder." + c.value) : u.$t("cms.builder.selectType"),
1652
+ onClose: c[7] || (c[7] = (f) => n.value = !1),
1653
+ title: a.value ? u.$t("cms.builder." + a.value) : u.$t("cms.builder.selectType"),
1308
1654
  size: "50vw"
1309
1655
  }, {
1310
- footer: C(() => [
1311
- d("div", yt, [
1656
+ footer: q(() => [
1657
+ d("div", $d, [
1312
1658
  d("button", {
1313
- onClick: o[5] || (o[5] = (y) => v.value = !1),
1659
+ onClick: c[5] || (c[5] = (f) => n.value = !1),
1314
1660
  class: "inline-flex items-center px-3 py-2 text-sm text-black duration-300 border border-gray-200 rounded-lg gap-x-2 whitespace-nowrap hover:bg-gray-100"
1315
- }, a(u.$t("cms.builder.cancel")), 1),
1661
+ }, i(u.$t("cms.builder.cancel")), 1),
1316
1662
  d("button", {
1317
- onClick: f,
1663
+ onClick: V,
1318
1664
  class: "py-2 px-3 inline-flex items-center gap-x-2 text-sm whitespace-nowrap text-white bg-blue-500 rounded-lg !border-gray-200 hover:bg-blue-700 duration-300"
1319
- }, a(u.$t("cms.builder.create")), 1)
1665
+ }, i(u.$t("cms.builder.create")), 1)
1320
1666
  ])
1321
1667
  ]),
1322
- default: C(() => {
1323
- var y;
1668
+ default: q(() => {
1669
+ var f;
1324
1670
  return [
1325
- c.value ? (r(), s(I, { key: 1 }, [
1326
- d("div", vt, [
1327
- d("div", gt, [
1328
- d("span", null, a((y = b(_).find((x) => x.id === c.value)) == null ? void 0 : y.text), 1)
1671
+ a.value ? (r(), s($, { key: 1 }, [
1672
+ d("div", wd, [
1673
+ d("div", kd, [
1674
+ d("span", null, i((f = h.value.find((p) => p.id === a.value)) == null ? void 0 : f.text), 1)
1329
1675
  ]),
1330
1676
  d("button", {
1331
1677
  class: "py-2.5 px-3 mb-4 inline-flex items-center gap-x-2 text-sm whitespace-nowrap text-white bg-blue-500 rounded-lg !border-gray-200 hover:bg-blue-700 duration-300",
1332
- onClick: o[2] || (o[2] = (x) => c.value = null)
1333
- }, a(u.$t("cms.builder.changeType")), 1)
1678
+ onClick: c[2] || (c[2] = (p) => a.value = null)
1679
+ }, i(u.$t("cms.builder.changeType")), 1)
1334
1680
  ]),
1335
- n.value ? (r(), k(b(G), {
1336
- key: c.value,
1337
- schema: n.value,
1338
- modelValue: h.value,
1339
- "onUpdate:modelValue": o[3] || (o[3] = (x) => h.value = x),
1340
- form: l.value,
1341
- "onUpdate:form": o[4] || (o[4] = (x) => l.value = x)
1342
- }, null, 8, ["schema", "modelValue", "form"])) : g("", !0)
1343
- ], 64)) : (r(), k(ut, {
1681
+ m.value ? (r(), A(x(R), {
1682
+ key: a.value,
1683
+ schema: m.value,
1684
+ modelValue: b.value,
1685
+ "onUpdate:modelValue": c[3] || (c[3] = (p) => b.value = p),
1686
+ form: y.value,
1687
+ "onUpdate:form": c[4] || (c[4] = (p) => y.value = p)
1688
+ }, null, 8, ["schema", "modelValue", "form"])) : v("", !0)
1689
+ ], 64)) : (r(), A(md, {
1344
1690
  key: 0,
1345
- modelValue: c.value,
1346
- "onUpdate:modelValue": o[1] || (o[1] = (x) => c.value = x),
1347
- options: b(_)
1691
+ modelValue: a.value,
1692
+ "onUpdate:modelValue": c[1] || (c[1] = (p) => a.value = p),
1693
+ options: h.value
1348
1694
  }, null, 8, ["modelValue", "options"]))
1349
1695
  ];
1350
1696
  }),
@@ -1352,9 +1698,9 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1352
1698
  }, 8, ["visible", "title"])
1353
1699
  ]));
1354
1700
  }
1355
- }, ht = { class: "absolute top-2 right-2 opacity-0 group-hover:opacity-100 transition-opacity flex space-x-1 z-10" }, pt = { class: "flex items-center justify-between w-full p-4 border-t border-gray-200 dark:border-gray-700" }, xt = {
1701
+ }, Cd = { class: "absolute top-2 right-2 opacity-0 group-hover:opacity-100 transition-opacity flex space-x-1 z-10" }, Ad = { class: "flex items-center justify-between w-full p-4 border-t border-gray-200 dark:border-gray-700" }, jd = {
1356
1702
  __name: "vs-form-reference-controls",
1357
- props: /* @__PURE__ */ M({
1703
+ props: /* @__PURE__ */ E({
1358
1704
  title: {
1359
1705
  type: String,
1360
1706
  required: !0
@@ -1373,81 +1719,81 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1373
1719
  }),
1374
1720
  emits: ["update:modelValue", "update:parent"],
1375
1721
  setup(e) {
1376
- const { t: i } = F(), t = A(e, "modelValue"), v = A(e, "parent"), l = m(!1), c = m({}), h = m({}), n = j(() => {
1377
- var u;
1378
- return ((u = N[t.value.reference_type]) == null ? void 0 : u.schema) || null;
1722
+ const { t: l } = Y(), t = N().appContext.config.globalProperties.$settings.cms, o = j(e, "modelValue"), n = j(e, "parent"), y = w(!1), a = w({}), b = w({}), m = M(() => {
1723
+ var h, u;
1724
+ return ((h = t.sections.find((c) => c.id === o.value.reference_type)) == null ? void 0 : h.schema) || ((u = D[o.value.reference_type]) == null ? void 0 : u.schema) || null;
1379
1725
  });
1380
- E(l, (u) => {
1381
- u && (c.value = { ...t.value });
1726
+ B(y, (h) => {
1727
+ h && (a.value = { ...o.value });
1382
1728
  });
1383
- const f = async () => {
1729
+ const V = async () => {
1384
1730
  try {
1385
- if (await h.value.validate()) {
1386
- Z({
1731
+ if (await b.value.validate()) {
1732
+ T({
1387
1733
  type: "warning",
1388
- title: i("cms.common.actions.warning"),
1389
- message: i("cms.builder.editFieldFailed")
1734
+ title: l("cms.common.actions.warning"),
1735
+ message: l("cms.builder.editFieldFailed")
1390
1736
  });
1391
1737
  return;
1392
1738
  }
1393
- t.value = { ...c.value }, l.value = !1;
1394
- } catch (u) {
1395
- console.log(u);
1739
+ o.value = { ...a.value }, y.value = !1;
1740
+ } catch (h) {
1741
+ console.log(h);
1396
1742
  }
1397
1743
  };
1398
- return (u, o) => (r(), s("div", ht, [
1744
+ return (h, u) => (r(), s("div", Cd, [
1399
1745
  d("button", {
1400
- onClick: o[0] || (o[0] = (y) => l.value = !l.value),
1746
+ onClick: u[0] || (u[0] = (c) => y.value = !y.value),
1401
1747
  class: "p-1.5 bg-white dark:bg-gray-800 rounded shadow-sm hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors border border-gray-200 dark:border-gray-700"
1402
1748
  }, [
1403
- w(b(Y), { class: "h-4 w-4 text-gray-400" })
1749
+ k(x(J), { class: "h-4 w-4 text-gray-400" })
1404
1750
  ]),
1405
1751
  d("button", {
1406
- onClick: o[1] || (o[1] = (y) => v.value = v.value.filter((x) => x.id !== t.value.id)),
1752
+ onClick: u[1] || (u[1] = (c) => n.value = n.value.filter((f) => f.id !== o.value.id)),
1407
1753
  class: "p-1.5 bg-white dark:bg-gray-800 rounded shadow-sm hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors border border-gray-200 dark:border-gray-700"
1408
1754
  }, [
1409
- w(b(U), { class: "h-4 w-4 text-red-500" })
1755
+ k(x(K), { class: "h-4 w-4 text-red-500" })
1410
1756
  ]),
1411
- w(b(W), {
1412
- visible: l.value,
1413
- "onUpdate:visible": o[5] || (o[5] = (y) => l.value = y),
1414
- onClose: o[6] || (o[6] = (y) => l.value = !1),
1757
+ k(x(F), {
1758
+ visible: y.value,
1759
+ "onUpdate:visible": u[5] || (u[5] = (c) => y.value = c),
1760
+ onClose: u[6] || (u[6] = (c) => y.value = !1),
1415
1761
  title: e.title,
1416
1762
  width: "50vw"
1417
1763
  }, {
1418
- footer: C(() => [
1419
- d("div", pt, [
1764
+ footer: q(() => [
1765
+ d("div", Ad, [
1420
1766
  d("button", {
1421
1767
  class: "inline-flex items-center px-3 py-2 text-sm text-black duration-300 border border-gray-200 rounded-lg gap-x-2 whitespace-nowrap hover:bg-gray-100",
1422
- onClick: o[4] || (o[4] = (y) => l.value = !1)
1423
- }, a(u.$t("cms.common.actions.cancel")), 1),
1768
+ onClick: u[4] || (u[4] = (c) => y.value = !1)
1769
+ }, i(h.$t("cms.common.actions.cancel")), 1),
1424
1770
  d("button", {
1425
- onClick: f,
1771
+ onClick: V,
1426
1772
  class: "py-2 px-3 inline-flex items-center gap-x-2 text-sm whitespace-nowrap text-white bg-blue-500 rounded-lg !border-gray-200 hover:bg-blue-700 duration-300"
1427
- }, a(u.$t("cms.common.actions.save")), 1)
1773
+ }, i(h.$t("cms.common.actions.save")), 1)
1428
1774
  ])
1429
1775
  ]),
1430
- default: C(() => [
1431
- n.value ? (r(), k(b(G), {
1776
+ default: q(() => [
1777
+ m.value ? (r(), A(x(R), {
1432
1778
  key: 0,
1433
- form: h.value,
1434
- "onUpdate:form": o[2] || (o[2] = (y) => h.value = y),
1435
- schema: n.value,
1436
- modelValue: c.value,
1437
- "onUpdate:modelValue": o[3] || (o[3] = (y) => c.value = y),
1779
+ form: b.value,
1780
+ "onUpdate:form": u[2] || (u[2] = (c) => b.value = c),
1781
+ schema: m.value,
1782
+ modelValue: a.value,
1783
+ "onUpdate:modelValue": u[3] || (u[3] = (c) => a.value = c),
1438
1784
  class: "-mr-[10px] ml-[10px] mt-[10px]"
1439
- }, null, 8, ["form", "schema", "modelValue"])) : g("", !0)
1785
+ }, null, 8, ["form", "schema", "modelValue"])) : v("", !0)
1440
1786
  ]),
1441
1787
  _: 1
1442
1788
  }, 8, ["visible", "title"])
1443
1789
  ]));
1444
1790
  }
1445
- }, ft = { class: "w-full" }, mt = {
1791
+ }, qd = { class: "w-full" }, Md = {
1446
1792
  key: 0,
1447
1793
  class: "relative"
1448
- }, wt = { class: "group wireframe-block h-[280px] !p-4 border-2 border-dashed bg-white relative overflow-hidden transition-all rounded-lg shadow-sm border-gray-00 hover:border-gray-400 cursor-grab" }, kt = ["src"], At = {
1794
+ }, Sd = { class: "group wireframe-block h-[280px] !p-4 border-2 border-dashed bg-white relative overflow-hidden transition-all rounded-lg shadow-sm border-gray-00 hover:border-gray-400 cursor-grab" }, Ed = ["src"], Vd = {
1449
1795
  __name: "vs-form-reference-list",
1450
- props: /* @__PURE__ */ M({
1796
+ props: /* @__PURE__ */ E({
1451
1797
  reference_type: {
1452
1798
  type: String,
1453
1799
  required: !0
@@ -1464,73 +1810,70 @@ const T = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASIAAACbCAIAAABJbgHoAAA
1464
1810
  }),
1465
1811
  emits: ["update:modelValue"],
1466
1812
  setup(e) {
1467
- const i = (l) => {
1468
- var c;
1469
- return (c = _.find((h) => h.id === l)) == null ? void 0 : c.text;
1470
- }, t = A(e, "modelValue"), v = j({
1813
+ const l = j(e, "modelValue"), t = M({
1471
1814
  get() {
1472
- const l = t.value;
1473
- return l == null ? [] : Array.isArray(l) ? l : [];
1815
+ const o = l.value;
1816
+ return o == null ? [] : Array.isArray(o) ? o : [];
1474
1817
  },
1475
- set(l) {
1476
- t.value = Array.isArray(l) ? l : [];
1818
+ set(o) {
1819
+ l.value = Array.isArray(o) ? o : [];
1477
1820
  }
1478
1821
  });
1479
- return E(t, (l) => {
1480
- l != null && !Array.isArray(l) && (t.value = []);
1481
- }, { immediate: !0 }), (l, c) => {
1482
- var h;
1483
- return r(), s("div", ft, [
1484
- ((h = v.value) == null ? void 0 : h.length) > 0 ? (r(), k(b(J), {
1822
+ return B(l, (o) => {
1823
+ o != null && !Array.isArray(o) && (l.value = []);
1824
+ }, { immediate: !0 }), (o, n) => {
1825
+ var y;
1826
+ return r(), s("div", qd, [
1827
+ ((y = t.value) == null ? void 0 : y.length) > 0 ? (r(), A(x(P), {
1485
1828
  key: 0,
1486
- modelValue: v.value,
1487
- "onUpdate:modelValue": c[1] || (c[1] = (n) => v.value = n),
1829
+ modelValue: t.value,
1830
+ "onUpdate:modelValue": n[1] || (n[1] = (a) => t.value = a),
1488
1831
  "item-key": "id",
1489
1832
  handle: ".drag-handle",
1490
1833
  class: "grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4"
1491
1834
  }, {
1492
- item: C(({ element: n, index: f }) => [
1493
- n != null && n.reference_type ? (r(), s("div", mt, [
1494
- d("div", wt, [
1835
+ item: q(({ element: a, index: b }) => [
1836
+ a != null && a.reference_type ? (r(), s("div", Md, [
1837
+ d("div", Sd, [
1495
1838
  (r(), s("div", {
1496
- key: n.id,
1839
+ key: a.id,
1497
1840
  class: "absolute top-2 left-2 opacity-0 group-hover:opacity-100 border border-gray-200 dark:border-gray-700 transition-opacity cursor-move z-10 bg-white dark:bg-gray-800 rounded p-1 shadow-sm drag-handle"
1498
1841
  }, [
1499
- w(b(D), { class: "h-4 w-4 text-gray-400" })
1842
+ k(x(O), { class: "h-4 w-4 text-gray-400" })
1500
1843
  ])),
1501
- w(xt, {
1502
- title: l.$t("cms.builder." + (n == null ? void 0 : n.reference_type)),
1503
- modelValue: v.value[f],
1504
- "onUpdate:modelValue": (u) => v.value[f] = u,
1505
- parent: v.value,
1506
- "onUpdate:parent": c[0] || (c[0] = (u) => v.value = u)
1844
+ k(jd, {
1845
+ title: o.$t("cms.builder." + (a == null ? void 0 : a.reference_type)),
1846
+ modelValue: t.value[b],
1847
+ "onUpdate:modelValue": (m) => t.value[b] = m,
1848
+ parent: t.value,
1849
+ "onUpdate:parent": n[0] || (n[0] = (m) => t.value = m)
1507
1850
  }, null, 8, ["title", "modelValue", "onUpdate:modelValue", "parent"]),
1508
- b($)[n == null ? void 0 : n.reference_type] ? (r(), k(L(b($)[n == null ? void 0 : n.reference_type]), {
1851
+ x(S)[a == null ? void 0 : a.reference_type] ? (r(), A(G(x(S)[a == null ? void 0 : a.reference_type]), {
1509
1852
  key: 0,
1510
- index: f,
1511
- text: i(n == null ? void 0 : n.reference_type),
1512
- count: Array.isArray(n == null ? void 0 : n.data) ? n.data.length : 0
1853
+ index: b,
1854
+ text: a == null ? void 0 : a.reference_type,
1855
+ count: Array.isArray(a == null ? void 0 : a.data) ? a.data.length : 0
1513
1856
  }, null, 8, ["index", "text", "count"])) : (r(), s("img", {
1514
1857
  key: 1,
1515
- src: b(T),
1858
+ src: x(U),
1516
1859
  alt: "Team collaboration",
1517
1860
  class: "w-full h-full object-cover"
1518
- }, null, 8, kt))
1861
+ }, null, 8, Ed))
1519
1862
  ])
1520
- ])) : g("", !0)
1863
+ ])) : v("", !0)
1521
1864
  ]),
1522
1865
  _: 1
1523
- }, 8, ["modelValue"])) : g("", !0),
1524
- w(bt, {
1866
+ }, 8, ["modelValue"])) : v("", !0),
1867
+ k(_d, {
1525
1868
  class: "mt-4",
1526
1869
  title: e.title,
1527
- modelValue: v.value,
1528
- "onUpdate:modelValue": c[2] || (c[2] = (n) => v.value = n)
1870
+ modelValue: t.value,
1871
+ "onUpdate:modelValue": n[2] || (n[2] = (a) => t.value = a)
1529
1872
  }, null, 8, ["title", "modelValue"])
1530
1873
  ]);
1531
1874
  };
1532
1875
  }
1533
1876
  };
1534
1877
  export {
1535
- At as default
1878
+ Vd as default
1536
1879
  };