@aitronos/freddy-plugins 0.4.58 → 0.4.59

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 (291) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/{icons-DpyIf23e.js → icons-Be1wtE70.js} +1286 -1220
  3. package/dist/icons-Be1wtE70.js.map +1 -0
  4. package/dist/icons-CCfXKsmx.cjs +2 -0
  5. package/dist/icons-CCfXKsmx.cjs.map +1 -0
  6. package/dist/index.cjs +4 -4
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.d.ts +6 -4389
  9. package/dist/index.js +521 -513
  10. package/dist/index.js.map +1 -1
  11. package/dist/src/App.vue.d.ts +2 -0
  12. package/dist/src/animations/AnimeSpaceman.vue.d.ts +8 -0
  13. package/dist/src/animations/index.d.ts +1 -0
  14. package/dist/src/assets/logos/index.d.ts +4 -0
  15. package/dist/src/components/AdvancedModal.vue.d.ts +23 -0
  16. package/dist/src/components/Assistant/AssistantField.vue.d.ts +13 -0
  17. package/dist/src/components/Assistant/AssistantList.vue.d.ts +10 -0
  18. package/dist/src/components/Assistant/AssistantsHeader.vue.d.ts +17 -0
  19. package/dist/src/components/Assistant/AvatarChoosing.vue.d.ts +16 -0
  20. package/dist/src/components/Assistant/AvatarList.vue.d.ts +30 -0
  21. package/dist/src/components/Assistant/ChooseAssistantAvatar.vue.d.ts +77 -0
  22. package/dist/src/components/Assistant/RulesManagement.vue.d.ts +28 -0
  23. package/dist/src/components/Assistant/VectorFrame.vue.d.ts +15 -0
  24. package/dist/src/components/Assistant/VectorSection.vue.d.ts +31 -0
  25. package/dist/src/components/Assistant/VoiceList.vue.d.ts +27 -0
  26. package/dist/src/components/Assistant/VoiceSelection.vue.d.ts +12 -0
  27. package/dist/src/components/Buttons/BaseButton.vue.d.ts +25 -0
  28. package/dist/src/components/Buttons/SocialButtons.vue.d.ts +13 -0
  29. package/dist/src/components/Buttons/index.d.ts +2 -0
  30. package/dist/src/components/CodeBlock.vue.d.ts +6 -0
  31. package/dist/src/components/ConfirmationModal.vue.d.ts +28 -0
  32. package/dist/src/components/CustomCheckbox.vue.d.ts +13 -0
  33. package/dist/src/components/DeleteConfirmationModal.vue.d.ts +28 -0
  34. package/dist/src/components/Descriptions.vue.d.ts +85 -0
  35. package/dist/src/components/DiffTextarea.vue.d.ts +21 -0
  36. package/dist/src/components/Dropdown.vue.d.ts +75 -0
  37. package/dist/src/components/EditFeaturedExcerptModal.vue.d.ts +161 -0
  38. package/dist/src/components/EmailCodeVerification.vue.d.ts +20 -0
  39. package/dist/src/components/InputField/BaseInput.vue.d.ts +46 -0
  40. package/dist/src/components/InputField/CardInput.vue.d.ts +77 -0
  41. package/dist/src/components/InputField/DefaultInput.vue.d.ts +39 -0
  42. package/dist/src/components/InputField/InputField.vue.d.ts +74 -0
  43. package/dist/src/components/InputField/PhoneInput.vue.d.ts +75 -0
  44. package/dist/src/components/InputField/index.d.ts +5 -0
  45. package/dist/src/components/Instructions/InstructionsModal.vue.d.ts +12 -0
  46. package/dist/src/components/Instructions/InstructiontextArea.vue.d.ts +11 -0
  47. package/dist/src/components/ModalOverlay.vue.d.ts +26 -0
  48. package/dist/src/components/ModelDropdown.vue.d.ts +23 -0
  49. package/dist/src/components/OutputModeModal.vue.d.ts +61 -0
  50. package/dist/src/components/Pagination.vue.d.ts +42 -0
  51. package/dist/src/components/SearchInput.vue.d.ts +26 -0
  52. package/dist/src/components/SendButton.vue.d.ts +7 -0
  53. package/dist/src/components/SimpleChatInterface.vue.d.ts +48 -0
  54. package/dist/src/components/SkeletonLoader.vue.d.ts +8 -0
  55. package/dist/src/components/Slider.vue.d.ts +19 -0
  56. package/dist/src/components/SnackBar.vue.d.ts +2 -0
  57. package/dist/src/components/Spinner.vue.d.ts +5 -0
  58. package/dist/src/components/Switch.vue.d.ts +11 -0
  59. package/dist/src/components/SwitchSlot.vue.d.ts +22 -0
  60. package/dist/src/components/TabList.vue.d.ts +9 -0
  61. package/dist/src/components/Tabs/BaseTabButton.vue.d.ts +12 -0
  62. package/dist/src/components/Tabs/index.d.ts +5 -0
  63. package/dist/src/components/TextAreaInputField.vue.d.ts +266 -0
  64. package/dist/src/components/ToastMessage.vue.d.ts +2 -0
  65. package/dist/src/components/Tooltip.vue.d.ts +32 -0
  66. package/dist/src/components/TooltipV2.vue.d.ts +41 -0
  67. package/dist/src/components/index.d.ts +50 -0
  68. package/dist/src/composables/index.d.ts +4 -0
  69. package/dist/src/composables/useErrorHandler.d.ts +46 -0
  70. package/dist/src/composables/usePerformance.d.ts +54 -0
  71. package/dist/src/composables/useTheme.d.ts +37 -0
  72. package/dist/src/config/api.config.d.ts +31 -0
  73. package/dist/src/config/colors/brands/contentplate.colors.d.ts +3 -0
  74. package/dist/src/config/colors/brands/flowplate.colors.d.ts +3 -0
  75. package/dist/src/config/colors/brands/freddy.colors.d.ts +3 -0
  76. package/dist/src/config/colors/color-system.d.ts +58 -0
  77. package/dist/src/config/colors/index.d.ts +12 -0
  78. package/dist/src/config/colors/types/color-system.types.d.ts +62 -0
  79. package/dist/src/config/colors/types/color.types.d.ts +99 -0
  80. package/dist/src/config/colors/utils/color.utils.d.ts +86 -0
  81. package/dist/src/config/environments.d.ts +11 -0
  82. package/dist/src/config/theme/freddy-default.d.ts +16 -0
  83. package/dist/src/config/theme/freddy-light.d.ts +14 -0
  84. package/dist/src/config/theme/global-theme-store.d.ts +128 -0
  85. package/dist/src/config/theme/themes.d.ts +12 -0
  86. package/dist/src/directives/frSanitize.d.ts +5 -0
  87. package/dist/src/directives/index.d.ts +1 -0
  88. package/dist/src/foundations/components/Logo.vue.d.ts +11 -0
  89. package/dist/src/foundations/components/index.d.ts +1 -0
  90. package/dist/src/foundations/index.d.ts +1 -0
  91. package/dist/src/helpers/BaseImageIcon.vue.d.ts +6 -0
  92. package/dist/src/helpers/api-response.helper.d.ts +100 -0
  93. package/dist/src/helpers/colors.helper.d.ts +8 -0
  94. package/dist/src/helpers/common.helper.d.ts +42 -0
  95. package/dist/src/helpers/date-format.helper.d.ts +34 -0
  96. package/dist/src/helpers/date.helper.d.ts +23 -0
  97. package/dist/src/helpers/fileName-handler.helper.d.ts +6 -0
  98. package/dist/src/helpers/index.d.ts +9 -0
  99. package/dist/src/helpers/percentageCalc.helper.d.ts +7 -0
  100. package/dist/src/helpers/validators.helper.d.ts +11 -0
  101. package/dist/src/icons/IconAddChatPop.vue.d.ts +2 -0
  102. package/dist/src/icons/IconAddFileSystem.vue.d.ts +2 -0
  103. package/dist/src/icons/IconAddPeople.vue.d.ts +2 -0
  104. package/dist/src/icons/IconAitronos.vue.d.ts +2 -0
  105. package/dist/src/icons/IconApple.vue.d.ts +2 -0
  106. package/dist/src/icons/IconApplePay.vue.d.ts +2 -0
  107. package/dist/src/icons/IconAppsGrid.vue.d.ts +2 -0
  108. package/dist/src/icons/IconArrowDown.vue.d.ts +2 -0
  109. package/dist/src/icons/IconArrowLeft.vue.d.ts +2 -0
  110. package/dist/src/icons/IconArrowUp.vue.d.ts +2 -0
  111. package/dist/src/icons/IconBadgeCheck.vue.d.ts +2 -0
  112. package/dist/src/icons/IconBroom.vue.d.ts +2 -0
  113. package/dist/src/icons/IconBuildings.vue.d.ts +2 -0
  114. package/dist/src/icons/IconCalendarWithTickInside.vue.d.ts +2 -0
  115. package/dist/src/icons/IconCallNotAllowed.vue.d.ts +2 -0
  116. package/dist/src/icons/IconCardPay.vue.d.ts +2 -0
  117. package/dist/src/icons/IconCaution.vue.d.ts +2 -0
  118. package/dist/src/icons/IconChangeLog.vue.d.ts +2 -0
  119. package/dist/src/icons/IconCheckCircleFill.vue.d.ts +2 -0
  120. package/dist/src/icons/IconCheckInCircle.vue.d.ts +2 -0
  121. package/dist/src/icons/IconCheckRounded.vue.d.ts +2 -0
  122. package/dist/src/icons/IconChevronDown.vue.d.ts +2 -0
  123. package/dist/src/icons/IconChevronLeft.vue.d.ts +2 -0
  124. package/dist/src/icons/IconChevronRight.vue.d.ts +2 -0
  125. package/dist/src/icons/IconChevronUp.vue.d.ts +2 -0
  126. package/dist/src/icons/IconCircledCheck.vue.d.ts +2 -0
  127. package/dist/src/icons/IconClock.vue.d.ts +2 -0
  128. package/dist/src/icons/IconClosedEnvelope.vue.d.ts +2 -0
  129. package/dist/src/icons/IconCloudUpload.vue.d.ts +2 -0
  130. package/dist/src/icons/IconConnectorConfluence.vue.d.ts +2 -0
  131. package/dist/src/icons/IconConnectorFigma.vue.d.ts +2 -0
  132. package/dist/src/icons/IconConnectorFreshDesk.vue.d.ts +2 -0
  133. package/dist/src/icons/IconConnectorGitHub.vue.d.ts +2 -0
  134. package/dist/src/icons/IconConnectorJira.vue.d.ts +2 -0
  135. package/dist/src/icons/IconConnectorLinear.vue.d.ts +2 -0
  136. package/dist/src/icons/IconConnectorNotion.vue.d.ts +2 -0
  137. package/dist/src/icons/IconConnectorSlack.vue.d.ts +2 -0
  138. package/dist/src/icons/IconConnectorZapier.vue.d.ts +2 -0
  139. package/dist/src/icons/IconCopy.vue.d.ts +2 -0
  140. package/dist/src/icons/IconCross.vue.d.ts +2 -0
  141. package/dist/src/icons/IconCrossCircleFill.vue.d.ts +2 -0
  142. package/dist/src/icons/IconCrossInCircle.vue.d.ts +2 -0
  143. package/dist/src/icons/IconCurrentTick.vue.d.ts +2 -0
  144. package/dist/src/icons/IconDataUpload.vue.d.ts +2 -0
  145. package/dist/src/icons/IconDelete.vue.d.ts +2 -0
  146. package/dist/src/icons/IconDeleteFillRed.vue.d.ts +2 -0
  147. package/dist/src/icons/IconDialingPhone.vue.d.ts +2 -0
  148. package/dist/src/icons/IconDisabledAlert.vue.d.ts +2 -0
  149. package/dist/src/icons/IconDocumentation.vue.d.ts +2 -0
  150. package/dist/src/icons/IconDownload.vue.d.ts +2 -0
  151. package/dist/src/icons/IconDribbble.vue.d.ts +2 -0
  152. package/dist/src/icons/IconDropdownArrow.vue.d.ts +2 -0
  153. package/dist/src/icons/IconEdit.vue.d.ts +2 -0
  154. package/dist/src/icons/IconEditLinePath.vue.d.ts +72 -0
  155. package/dist/src/icons/IconEllipse.vue.d.ts +2 -0
  156. package/dist/src/icons/IconExcelThumbnail.vue.d.ts +2 -0
  157. package/dist/src/icons/IconEye.vue.d.ts +2 -0
  158. package/dist/src/icons/IconFacebook.vue.d.ts +2 -0
  159. package/dist/src/icons/IconFigma.vue.d.ts +2 -0
  160. package/dist/src/icons/IconFile.vue.d.ts +2 -0
  161. package/dist/src/icons/IconFileSystem.vue.d.ts +2 -0
  162. package/dist/src/icons/IconFileUpload.vue.d.ts +2 -0
  163. package/dist/src/icons/IconFilter.vue.d.ts +2 -0
  164. package/dist/src/icons/IconFolder.vue.d.ts +2 -0
  165. package/dist/src/icons/IconFreddyHub.vue.d.ts +2 -0
  166. package/dist/src/icons/IconFreddyHubLogo.vue.d.ts +2 -0
  167. package/dist/src/icons/IconFreddyHubNewLogo.vue.d.ts +2 -0
  168. package/dist/src/icons/IconFreddyHubTitle.vue.d.ts +2 -0
  169. package/dist/src/icons/IconFreddySmall.vue.d.ts +2 -0
  170. package/dist/src/icons/IconGlobExpand.vue.d.ts +2 -0
  171. package/dist/src/icons/IconGlobe.vue.d.ts +2 -0
  172. package/dist/src/icons/IconGoogle.vue.d.ts +2 -0
  173. package/dist/src/icons/IconHollowCircle.vue.d.ts +2 -0
  174. package/dist/src/icons/IconHome.vue.d.ts +2 -0
  175. package/dist/src/icons/IconInfoRounded.vue.d.ts +2 -0
  176. package/dist/src/icons/IconInvalidInvoice.vue.d.ts +2 -0
  177. package/dist/src/icons/IconInvoice.vue.d.ts +2 -0
  178. package/dist/src/icons/IconInvoiceSwitch.vue.d.ts +2 -0
  179. package/dist/src/icons/IconLapTableBottom.vue.d.ts +2 -0
  180. package/dist/src/icons/IconLense.vue.d.ts +2 -0
  181. package/dist/src/icons/IconLightCross.vue.d.ts +2 -0
  182. package/dist/src/icons/IconLink04.vue.d.ts +2 -0
  183. package/dist/src/icons/IconLoadingError.vue.d.ts +2 -0
  184. package/dist/src/icons/IconLoadingOrg.vue.d.ts +2 -0
  185. package/dist/src/icons/IconLocationWithCircleIn.vue.d.ts +2 -0
  186. package/dist/src/icons/IconLock.vue.d.ts +2 -0
  187. package/dist/src/icons/IconMarketPlace.vue.d.ts +2 -0
  188. package/dist/src/icons/IconMaximize.vue.d.ts +2 -0
  189. package/dist/src/icons/IconMicrophone.vue.d.ts +2 -0
  190. package/dist/src/icons/IconMutedMicrophone.vue.d.ts +2 -0
  191. package/dist/src/icons/IconNewNotification.vue.d.ts +2 -0
  192. package/dist/src/icons/IconNewTab.vue.d.ts +2 -0
  193. package/dist/src/icons/IconNotification.vue.d.ts +2 -0
  194. package/dist/src/icons/IconOpenBook.vue.d.ts +2 -0
  195. package/dist/src/icons/IconPaperAirPlane.vue.d.ts +2 -0
  196. package/dist/src/icons/IconPauseCircle.vue.d.ts +2 -0
  197. package/dist/src/icons/IconPdfThumbnail.vue.d.ts +2 -0
  198. package/dist/src/icons/IconPenEdit.vue.d.ts +2 -0
  199. package/dist/src/icons/IconPencil.vue.d.ts +2 -0
  200. package/dist/src/icons/IconPeopleHub.vue.d.ts +2 -0
  201. package/dist/src/icons/IconPersonCircle.vue.d.ts +2 -0
  202. package/dist/src/icons/IconPits.vue.d.ts +2 -0
  203. package/dist/src/icons/IconPlay.vue.d.ts +2 -0
  204. package/dist/src/icons/IconPlus.vue.d.ts +2 -0
  205. package/dist/src/icons/IconPolygonDown.vue.d.ts +2 -0
  206. package/dist/src/icons/IconPresentation.vue.d.ts +2 -0
  207. package/dist/src/icons/IconProgressBase.vue.d.ts +2 -0
  208. package/dist/src/icons/IconProgressComplete.vue.d.ts +2 -0
  209. package/dist/src/icons/IconProgressGoing.vue.d.ts +2 -0
  210. package/dist/src/icons/IconPurpose.vue.d.ts +2 -0
  211. package/dist/src/icons/IconPurseCircleFill.vue.d.ts +2 -0
  212. package/dist/src/icons/IconQuestion.vue.d.ts +2 -0
  213. package/dist/src/icons/IconRadio.vue.d.ts +2 -0
  214. package/dist/src/icons/IconRadioFill.vue.d.ts +2 -0
  215. package/dist/src/icons/IconRefresh.vue.d.ts +2 -0
  216. package/dist/src/icons/IconRevertedTriangle.vue.d.ts +2 -0
  217. package/dist/src/icons/IconRobotScreen.vue.d.ts +2 -0
  218. package/dist/src/icons/IconRoundTick.vue.d.ts +2 -0
  219. package/dist/src/icons/IconSearch.vue.d.ts +2 -0
  220. package/dist/src/icons/IconSearchOptimised.vue.d.ts +2 -0
  221. package/dist/src/icons/IconSectionHide.vue.d.ts +2 -0
  222. package/dist/src/icons/IconSend.vue.d.ts +2 -0
  223. package/dist/src/icons/IconSettings.vue.d.ts +2 -0
  224. package/dist/src/icons/IconSettingsBold.vue.d.ts +2 -0
  225. package/dist/src/icons/IconSize.vue.d.ts +2 -0
  226. package/dist/src/icons/IconSliderKnobs.vue.d.ts +2 -0
  227. package/dist/src/icons/IconSortIdle.vue.d.ts +2 -0
  228. package/dist/src/icons/IconSparkle.vue.d.ts +2 -0
  229. package/dist/src/icons/IconSpotlio.vue.d.ts +2 -0
  230. package/dist/src/icons/IconStar.vue.d.ts +2 -0
  231. package/dist/src/icons/IconStatistics.vue.d.ts +2 -0
  232. package/dist/src/icons/IconStopChat.vue.d.ts +2 -0
  233. package/dist/src/icons/IconStreamLineHub.vue.d.ts +2 -0
  234. package/dist/src/icons/IconStreamLineHubNewLogo.vue.d.ts +2 -0
  235. package/dist/src/icons/IconSun.vue.d.ts +2 -0
  236. package/dist/src/icons/IconSwap.vue.d.ts +2 -0
  237. package/dist/src/icons/IconText.vue.d.ts +2 -0
  238. package/dist/src/icons/IconTextThumbnail.vue.d.ts +2 -0
  239. package/dist/src/icons/IconThinDocument.vue.d.ts +2 -0
  240. package/dist/src/icons/IconThinFile.vue.d.ts +2 -0
  241. package/dist/src/icons/IconThumbsDown.vue.d.ts +2 -0
  242. package/dist/src/icons/IconTick.vue.d.ts +2 -0
  243. package/dist/src/icons/IconUser.vue.d.ts +2 -0
  244. package/dist/src/icons/IconVerticalDots.vue.d.ts +2 -0
  245. package/dist/src/icons/IconVideoCamera.vue.d.ts +2 -0
  246. package/dist/src/icons/IconWarningOctal.vue.d.ts +2 -0
  247. package/dist/src/icons/IconX.vue.d.ts +2 -0
  248. package/dist/src/icons/IconZip.vue.d.ts +2 -0
  249. package/dist/src/icons/index.d.ts +148 -0
  250. package/dist/src/index.d.ts +23 -0
  251. package/dist/src/interfaces/assistant.interfaces.d.ts +237 -0
  252. package/dist/src/interfaces/base-button.interfaces.d.ts +119 -0
  253. package/dist/src/interfaces/color-comparison.interfaces.d.ts +71 -0
  254. package/dist/src/interfaces/index.d.ts +19 -0
  255. package/dist/src/interfaces/input-field.interfaces.d.ts +226 -0
  256. package/dist/src/interfaces/reference.d.ts +14 -0
  257. package/dist/src/interfaces/services/ai.interfaces.d.ts +56 -0
  258. package/dist/src/interfaces/services/api.interfaces.d.ts +46 -0
  259. package/dist/src/interfaces/services/auth.interfaces.d.ts +99 -0
  260. package/dist/src/interfaces/services/index.d.ts +7 -0
  261. package/dist/src/interfaces/skeleton-loader.interfaces.d.ts +1 -0
  262. package/dist/src/interfaces/slider.interfaces.d.ts +81 -0
  263. package/dist/src/interfaces/social-buttons.interfaces.d.ts +115 -0
  264. package/dist/src/interfaces/switch-slot.interfaces.d.ts +55 -0
  265. package/dist/src/interfaces/tab-button.interfaces.d.ts +23 -0
  266. package/dist/src/interfaces/tab-list.interfaces.d.ts +15 -0
  267. package/dist/src/interfaces/theme/index.d.ts +5 -0
  268. package/dist/src/interfaces/theme/theme.interfaces.d.ts +88 -0
  269. package/dist/src/interfaces/ui/chat.interfaces.d.ts +66 -0
  270. package/dist/src/interfaces/ui/editor.interfaces.d.ts +31 -0
  271. package/dist/src/interfaces/ui/feedback.interfaces.d.ts +39 -0
  272. package/dist/src/interfaces/ui/form.interfaces.d.ts +51 -0
  273. package/dist/src/interfaces/ui/index.d.ts +10 -0
  274. package/dist/src/interfaces/ui/modal.interfaces.d.ts +34 -0
  275. package/dist/src/interfaces/ui/navigation.interfaces.d.ts +31 -0
  276. package/dist/src/interfaces/utilities/common.interfaces.d.ts +59 -0
  277. package/dist/src/interfaces/utilities/index.d.ts +5 -0
  278. package/dist/src/main.d.ts +1 -0
  279. package/dist/src/plugin.d.ts +5 -0
  280. package/dist/src/plugins/icon-style.d.ts +3 -0
  281. package/dist/src/plugins/index.d.ts +11 -0
  282. package/dist/src/services/AITextService.d.ts +68 -0
  283. package/dist/src/services/index.d.ts +15 -0
  284. package/dist/src/utility/confirmationModal.d.ts +2 -0
  285. package/dist/src/utility/index.d.ts +3 -0
  286. package/dist/src/utility/useSnackbar.d.ts +26 -0
  287. package/dist/src/utility/useToast.d.ts +19 -0
  288. package/package.json +1 -1
  289. package/dist/icons-4bzLozuJ.cjs +0 -2
  290. package/dist/icons-4bzLozuJ.cjs.map +0 -1
  291. package/dist/icons-DpyIf23e.js.map +0 -1
package/dist/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  var Ue = Object.defineProperty;
2
2
  var Ke = (y, m, i) => m in y ? Ue(y, m, { enumerable: !0, configurable: !0, writable: !0, value: i }) : y[m] = i;
3
3
  var ye = (y, m, i) => Ke(y, typeof m != "symbol" ? m + "" : m, i);
4
- import { defineAsyncComponent as R, defineComponent as N, createElementBlock as f, openBlock as c, normalizeStyle as ne, normalizeClass as A, createStaticVNode as Ge, createBlock as E, Transition as ce, withCtx as Z, createCommentVNode as S, createElementVNode as a, renderSlot as W, toDisplayString as B, createVNode as L, unref as F, ref as D, computed as M, Fragment as O, renderList as U, resolveDynamicComponent as K, watch as G, withKeys as z, withModifiers as j, withDirectives as Q, vModelText as Y, createTextVNode as J, onMounted as me, nextTick as oe, shallowRef as Ze, mergeProps as se, vModelDynamic as We, onUnmounted as Be, useAttrs as qe } from "vue";
5
- import { I as Je, _ as H, a as pe, b as Qe, c as Fe, d as he, e as ee, f as Ye, g as Se, h as Me, i as Xe, j as re, k as et, l as tt, m as ot, n as nt, o as fe, p as st, q as le, r as it, s as at, u as te, t as lt, v as ct, w as rt, x as dt, y as ut, z as pt, A as Te, B as ht, C as $e, D as ft, E as mt, F as vt, G as yt, H as gt, J as It, K as bt, L as kt, M as _t, N as Le, O as Ct, P as Ve, Q as Ee, R as wt, S as St, T as xe, U as Tt } from "./icons-DpyIf23e.js";
6
- import { V as Pc, W as Dc, X as Ac, Y as Bc, Z as Fc, $ as Mc, a0 as Lc, a1 as Vc, a2 as Ec, a3 as Nc, a4 as Rc, a5 as Oc, a6 as zc, a7 as Hc, a8 as jc, a9 as Uc, aa as Kc, ab as Gc, ac as Zc, ad as Wc, ae as qc, af as Jc, ag as Qc, ah as Yc, ai as Xc, aj as er, ak as tr, al as or, am as nr, an as sr, ao as ir, ap as ar, aq as lr, ar as cr, as as rr, at as dr, au as ur, av as pr, aw as hr, ax as fr, ay as mr, az as vr, aA as yr, aB as gr, aC as Ir, aD as br, aE as kr, aF as _r, aG as Cr, aH as wr, aI as Sr, aJ as Tr, aK as $r, aL as xr, aM as Pr, aN as Dr, aO as Ar, aP as Br, aQ as Fr, aR as Mr, aS as Lr, aT as Vr, aU as Er, aV as Nr, aW as Rr, aX as Or, aY as zr, aZ as Hr, a_ as jr, a$ as Ur, b0 as Kr, b1 as Gr, b2 as Zr, b3 as Wr, b4 as qr, b5 as Jr, b6 as Qr, b7 as Yr, b8 as Xr, b9 as ed, ba as td, bb as od, bc as nd, bd as sd, be as id, bf as ad, bg as ld, bh as cd, bi as rd, bj as dd, bk as ud, bl as pd, bm as hd, bn as fd, bo as md, bp as vd, bq as yd, br as gd, bs as Id, bt as bd, bu as kd, bv as _d, bw as Cd, bx as wd, by as Sd, bz as Td, bA as $d, bB as xd, c0 as Pd, bF as Dd, bY as Ad, bT as Bd, bN as Fd, bW as Md, bX as Ld, bE as Vd, b_ as Ed, bU as Nd, bH as Rd, bL as Od, bJ as zd, bM as Hd, bI as jd, bO as Ud, bQ as Kd, bG as Gd, bV as Zd, bZ as Wd, bP as qd, c1 as Jd, bD as Qd, bC as Yd, b$ as Xd, bK as eu, bS as tu, bR as ou } from "./icons-DpyIf23e.js";
4
+ import { defineAsyncComponent as R, defineComponent as N, createElementBlock as f, openBlock as c, normalizeStyle as ne, normalizeClass as D, createStaticVNode as Ge, createBlock as E, Transition as ce, withCtx as Z, createCommentVNode as S, createElementVNode as a, renderSlot as W, toDisplayString as B, createVNode as L, unref as F, ref as A, computed as M, Fragment as O, renderList as U, resolveDynamicComponent as K, watch as G, withKeys as z, withModifiers as j, withDirectives as Y, vModelText as Q, createTextVNode as J, onMounted as me, nextTick as oe, shallowRef as Ze, mergeProps as se, vModelDynamic as We, onUnmounted as Be, useAttrs as qe } from "vue";
5
+ import { I as Je, _ as H, a as pe, b as Ye, c as Fe, d as he, e as ee, f as Qe, g as Se, h as Me, i as Xe, j as re, k as et, l as tt, m as ot, n as nt, o as fe, p as st, q as le, r as it, s as at, u as te, t as lt, v as ct, w as rt, x as dt, y as ut, z as pt, A as Te, B as ht, C as $e, D as ft, E as mt, F as vt, G as yt, H as gt, J as It, K as bt, L as kt, M as _t, N as Le, O as Ct, P as Ve, Q as Ee, R as wt, S as St, T as xe, U as Tt } from "./icons-Be1wtE70.js";
6
+ import { V as Pc, W as Ac, X as Dc, Y as Bc, Z as Fc, $ as Mc, a0 as Lc, a1 as Vc, a2 as Ec, a3 as Nc, a4 as Rc, a5 as Oc, a6 as zc, a7 as Hc, a8 as jc, a9 as Uc, aa as Kc, ab as Gc, ac as Zc, ad as Wc, ae as qc, af as Jc, ag as Yc, ah as Qc, ai as Xc, aj as er, ak as tr, al as or, am as nr, an as sr, ao as ir, ap as ar, aq as lr, ar as cr, as as rr, at as dr, au as ur, av as pr, aw as hr, ax as fr, ay as mr, az as vr, aA as yr, aB as gr, aC as Ir, aD as br, aE as kr, aF as _r, aG as Cr, aH as wr, aI as Sr, aJ as Tr, aK as $r, aL as xr, aM as Pr, aN as Ar, aO as Dr, aP as Br, aQ as Fr, aR as Mr, aS as Lr, aT as Vr, aU as Er, aV as Nr, aW as Rr, aX as Or, aY as zr, aZ as Hr, a_ as jr, a$ as Ur, b0 as Kr, b1 as Gr, b2 as Zr, b3 as Wr, b4 as qr, b5 as Jr, b6 as Yr, b7 as Qr, b8 as Xr, b9 as ed, ba as td, bb as od, bc as nd, bd as sd, be as id, bf as ad, bg as ld, bh as cd, bi as rd, bj as dd, bk as ud, bl as pd, bm as hd, bn as fd, bo as md, bp as vd, bq as yd, br as gd, bs as Id, bt as bd, bu as kd, bv as _d, bw as Cd, bx as wd, by as Sd, bz as Td, bA as $d, bB as xd, bC as Pd, bD as Ad, c2 as Dd, bH as Bd, b_ as Fd, bV as Md, bP as Ld, bY as Vd, bZ as Ed, bG as Nd, c0 as Rd, bW as Od, bJ as zd, bN as Hd, bL as jd, bO as Ud, bK as Kd, bQ as Gd, bS as Zd, bI as Wd, bX as qd, b$ as Jd, bR as Yd, c3 as Qd, bF as Xd, bE as eu, c1 as tu, bM as ou, bU as nu, bT as su } from "./icons-Be1wtE70.js";
7
7
  const Ne = {
8
8
  mounted(y) {
9
9
  y.getAttribute("class") || y.setAttribute("class", "base-fallback-style");
@@ -63,7 +63,7 @@ const xt = [
63
63
  "id",
64
64
  "colspan",
65
65
  "rowspan"
66
- ], Pe = (y) => y.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, "").replace(/<iframe\b[^<]*(?:(?!<\/iframe>)<[^<]*)*<\/iframe>/gi, "").replace(/on\w+="[^"]*"/gi, "").replace(/javascript:/gi, ""), De = (y) => {
66
+ ], Pe = (y) => y.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, "").replace(/<iframe\b[^<]*(?:(?!<\/iframe>)<[^<]*)*<\/iframe>/gi, "").replace(/on\w+="[^"]*"/gi, "").replace(/javascript:/gi, ""), Ae = (y) => {
67
67
  if (!ge)
68
68
  return Pe(y);
69
69
  try {
@@ -77,176 +77,182 @@ const xt = [
77
77
  }
78
78
  }, Re = {
79
79
  mounted(y, m) {
80
- y.innerHTML = De(m.value || "");
80
+ y.innerHTML = Ae(m.value || "");
81
81
  },
82
82
  updated(y, m) {
83
- y.innerHTML = De(m.value || "");
83
+ y.innerHTML = Ae(m.value || "");
84
84
  }
85
85
  }, Ul = {
86
86
  install(y) {
87
- var i;
87
+ var m;
88
88
  y.directive("icon-style", Ne), y.directive("fr-sanitize", Re);
89
- const m = /* @__PURE__ */ Object.assign({
90
- "./icons/IconAddFileSystem.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c2),
91
- "./icons/IconAddPeople.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c3),
92
- "./icons/IconAitronos.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c4),
93
- "./icons/IconApple.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c5),
94
- "./icons/IconApplePay.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c6),
95
- "./icons/IconArrowDown.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c7),
96
- "./icons/IconArrowLeft.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c8),
97
- "./icons/IconArrowUp.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c9),
98
- "./icons/IconBadgeCheck.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ca),
99
- "./icons/IconBroom.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cb),
100
- "./icons/IconBuildings.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cc),
101
- "./icons/IconCalendarWithTickInside.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cd),
102
- "./icons/IconCallNotAllowed.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ce),
103
- "./icons/IconCardPay.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cf),
104
- "./icons/IconCaution.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cg),
105
- "./icons/IconChangeLog.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ch),
106
- "./icons/IconCheckCircleFill.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ci),
107
- "./icons/IconCheckInCircle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cj),
108
- "./icons/IconCheckRounded.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ck),
109
- "./icons/IconChevronDown.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cl),
110
- "./icons/IconChevronLeft.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cm),
111
- "./icons/IconChevronRight.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cn),
112
- "./icons/IconChevronUp.vue": () => import("./icons-DpyIf23e.js").then((e) => e.co),
113
- "./icons/IconCircledCheck.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cp),
114
- "./icons/IconClock.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cq),
115
- "./icons/IconClosedEnvelope.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cr),
116
- "./icons/IconCloudUpload.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cs),
117
- "./icons/IconConnectorConfluence.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ct),
118
- "./icons/IconConnectorFigma.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cu),
119
- "./icons/IconConnectorFreshDesk.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cv),
120
- "./icons/IconConnectorGitHub.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cw),
121
- "./icons/IconConnectorJira.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cx),
122
- "./icons/IconConnectorLinear.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cy),
123
- "./icons/IconConnectorNotion.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cz),
124
- "./icons/IconConnectorSlack.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cA),
125
- "./icons/IconConnectorZapier.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cB),
126
- "./icons/IconCopy.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cC),
127
- "./icons/IconCross.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cD),
128
- "./icons/IconCrossCircleFill.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cE),
129
- "./icons/IconCrossInCircle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cF),
130
- "./icons/IconCurrentTick.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cG),
131
- "./icons/IconDataUpload.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cH),
132
- "./icons/IconDelete.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cI),
133
- "./icons/IconDeleteFillRed.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cJ),
134
- "./icons/IconDialingPhone.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cK),
135
- "./icons/IconDisabledAlert.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cL),
136
- "./icons/IconDocumentation.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cM),
137
- "./icons/IconDownload.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cN),
138
- "./icons/IconDribbble.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cO),
139
- "./icons/IconDropdownArrow.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cP),
140
- "./icons/IconEdit.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cQ),
141
- "./icons/IconEditLinePath.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cR),
142
- "./icons/IconEllipse.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cS),
143
- "./icons/IconExcelThumbnail.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cT),
144
- "./icons/IconEye.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cU),
145
- "./icons/IconFacebook.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cV),
146
- "./icons/IconFigma.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cW),
147
- "./icons/IconFile.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cX),
148
- "./icons/IconFileSystem.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cY),
149
- "./icons/IconFileUpload.vue": () => import("./icons-DpyIf23e.js").then((e) => e.cZ),
150
- "./icons/IconFilter.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c_),
151
- "./icons/IconFolder.vue": () => import("./icons-DpyIf23e.js").then((e) => e.c$),
152
- "./icons/IconFreddyHub.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d0),
153
- "./icons/IconFreddyHubLogo.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d1),
154
- "./icons/IconFreddyHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d2),
155
- "./icons/IconFreddyHubTitle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d3),
156
- "./icons/IconFreddySmall.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d4),
157
- "./icons/IconGlobExpand.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d5),
158
- "./icons/IconGlobe.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d6),
159
- "./icons/IconGoogle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d7),
160
- "./icons/IconHollowCircle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d8),
161
- "./icons/IconHome.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d9),
162
- "./icons/IconInfoRounded.vue": () => import("./icons-DpyIf23e.js").then((e) => e.da),
163
- "./icons/IconInvalidInvoice.vue": () => import("./icons-DpyIf23e.js").then((e) => e.db),
164
- "./icons/IconInvoice.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dc),
165
- "./icons/IconInvoiceSwitch.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dd),
166
- "./icons/IconLapTableBottom.vue": () => import("./icons-DpyIf23e.js").then((e) => e.de),
167
- "./icons/IconLense.vue": () => import("./icons-DpyIf23e.js").then((e) => e.df),
168
- "./icons/IconLightCross.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dg),
169
- "./icons/IconLink04.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dh),
170
- "./icons/IconLoadingError.vue": () => import("./icons-DpyIf23e.js").then((e) => e.di),
171
- "./icons/IconLoadingOrg.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dj),
172
- "./icons/IconLocationWithCircleIn.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dk),
173
- "./icons/IconLock.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dl),
174
- "./icons/IconMarketPlace.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dm),
175
- "./icons/IconMaximize.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dn),
176
- "./icons/IconMicrophone.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dp),
177
- "./icons/IconMutedMicrophone.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dq),
178
- "./icons/IconNewNotification.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dr),
179
- "./icons/IconNewTab.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ds),
180
- "./icons/IconNotification.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dt),
181
- "./icons/IconOpenBook.vue": () => import("./icons-DpyIf23e.js").then((e) => e.du),
182
- "./icons/IconPaperAirPlane.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dv),
183
- "./icons/IconPauseCircle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dw),
184
- "./icons/IconPdfThumbnail.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dx),
185
- "./icons/IconPenEdit.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dy),
186
- "./icons/IconPencil.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dz),
187
- "./icons/IconPeopleHub.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dA),
188
- "./icons/IconPersonCircle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dB),
189
- "./icons/IconPits.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dC),
190
- "./icons/IconPlay.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dD),
191
- "./icons/IconPlus.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dE),
192
- "./icons/IconPolygonDown.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dF),
193
- "./icons/IconPresentation.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dG),
194
- "./icons/IconProgressBase.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dH),
195
- "./icons/IconProgressComplete.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dI),
196
- "./icons/IconProgressGoing.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dJ),
197
- "./icons/IconPurpose.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dK),
198
- "./icons/IconPurseCircleFill.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dL),
199
- "./icons/IconQuestion.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dM),
200
- "./icons/IconRadio.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dN),
201
- "./icons/IconRadioFill.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dO),
202
- "./icons/IconRefresh.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dP),
203
- "./icons/IconRevertedTriangle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dQ),
204
- "./icons/IconRobotScreen.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dR),
205
- "./icons/IconRoundTick.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dS),
206
- "./icons/IconSearch.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dT),
207
- "./icons/IconSearchOptimised.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dU),
208
- "./icons/IconSectionHide.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dV),
209
- "./icons/IconSend.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dW),
210
- "./icons/IconSettings.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dX),
211
- "./icons/IconSettingsBold.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dY),
212
- "./icons/IconSize.vue": () => import("./icons-DpyIf23e.js").then((e) => e.dZ),
213
- "./icons/IconSliderKnobs.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d_),
214
- "./icons/IconSortIdle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.d$),
215
- "./icons/IconSparkle.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e0),
216
- "./icons/IconSpotlio.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e1),
217
- "./icons/IconStar.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e2),
218
- "./icons/IconStatistics.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e3),
219
- "./icons/IconStopChat.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e4),
220
- "./icons/IconStreamLineHub.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e5),
221
- "./icons/IconStreamLineHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e6),
222
- "./icons/IconSun.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e7),
223
- "./icons/IconSwap.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e8),
224
- "./icons/IconText.vue": () => import("./icons-DpyIf23e.js").then((e) => e.e9),
225
- "./icons/IconTextThumbnail.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ea),
226
- "./icons/IconThinDocument.vue": () => import("./icons-DpyIf23e.js").then((e) => e.eb),
227
- "./icons/IconThinFile.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ec),
228
- "./icons/IconThumbsDown.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ed),
229
- "./icons/IconTick.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ee),
230
- "./icons/IconUser.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ef),
231
- "./icons/IconVerticalDots.vue": () => import("./icons-DpyIf23e.js").then((e) => e.eg),
232
- "./icons/IconVideoCamera.vue": () => import("./icons-DpyIf23e.js").then((e) => e.eh),
233
- "./icons/IconWarningOctal.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ei),
234
- "./icons/IconX.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ej),
235
- "./icons/IconZip.vue": () => import("./icons-DpyIf23e.js").then((e) => e.ek)
236
- });
237
- for (const e in m) {
238
- const s = ((i = e.split("/").pop()) == null ? void 0 : i.replace(".vue", "")) || "";
239
- s && y.component(
240
- s,
241
- R({
242
- loader: async () => {
243
- const l = await m[e]();
244
- return l.default || l;
245
- },
246
- delay: 0,
247
- timeout: 0
248
- })
249
- );
89
+ try {
90
+ const i = /* @__PURE__ */ Object.assign({
91
+ "./icons/IconAddChatPop.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c4),
92
+ "./icons/IconAddFileSystem.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c5),
93
+ "./icons/IconAddPeople.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c6),
94
+ "./icons/IconAitronos.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c7),
95
+ "./icons/IconApple.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c8),
96
+ "./icons/IconApplePay.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c9),
97
+ "./icons/IconAppsGrid.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ca),
98
+ "./icons/IconArrowDown.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cb),
99
+ "./icons/IconArrowLeft.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cc),
100
+ "./icons/IconArrowUp.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cd),
101
+ "./icons/IconBadgeCheck.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ce),
102
+ "./icons/IconBroom.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cf),
103
+ "./icons/IconBuildings.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cg),
104
+ "./icons/IconCalendarWithTickInside.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ch),
105
+ "./icons/IconCallNotAllowed.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ci),
106
+ "./icons/IconCardPay.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cj),
107
+ "./icons/IconCaution.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ck),
108
+ "./icons/IconChangeLog.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cl),
109
+ "./icons/IconCheckCircleFill.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cm),
110
+ "./icons/IconCheckInCircle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cn),
111
+ "./icons/IconCheckRounded.vue": () => import("./icons-Be1wtE70.js").then((e) => e.co),
112
+ "./icons/IconChevronDown.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cp),
113
+ "./icons/IconChevronLeft.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cq),
114
+ "./icons/IconChevronRight.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cr),
115
+ "./icons/IconChevronUp.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cs),
116
+ "./icons/IconCircledCheck.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ct),
117
+ "./icons/IconClock.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cu),
118
+ "./icons/IconClosedEnvelope.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cv),
119
+ "./icons/IconCloudUpload.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cw),
120
+ "./icons/IconConnectorConfluence.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cx),
121
+ "./icons/IconConnectorFigma.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cy),
122
+ "./icons/IconConnectorFreshDesk.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cz),
123
+ "./icons/IconConnectorGitHub.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cA),
124
+ "./icons/IconConnectorJira.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cB),
125
+ "./icons/IconConnectorLinear.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cC),
126
+ "./icons/IconConnectorNotion.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cD),
127
+ "./icons/IconConnectorSlack.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cE),
128
+ "./icons/IconConnectorZapier.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cF),
129
+ "./icons/IconCopy.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cG),
130
+ "./icons/IconCross.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cH),
131
+ "./icons/IconCrossCircleFill.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cI),
132
+ "./icons/IconCrossInCircle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cJ),
133
+ "./icons/IconCurrentTick.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cK),
134
+ "./icons/IconDataUpload.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cL),
135
+ "./icons/IconDelete.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cM),
136
+ "./icons/IconDeleteFillRed.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cN),
137
+ "./icons/IconDialingPhone.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cO),
138
+ "./icons/IconDisabledAlert.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cP),
139
+ "./icons/IconDocumentation.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cQ),
140
+ "./icons/IconDownload.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cR),
141
+ "./icons/IconDribbble.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cS),
142
+ "./icons/IconDropdownArrow.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cT),
143
+ "./icons/IconEdit.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cU),
144
+ "./icons/IconEditLinePath.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cV),
145
+ "./icons/IconEllipse.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cW),
146
+ "./icons/IconExcelThumbnail.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cX),
147
+ "./icons/IconEye.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cY),
148
+ "./icons/IconFacebook.vue": () => import("./icons-Be1wtE70.js").then((e) => e.cZ),
149
+ "./icons/IconFigma.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c_),
150
+ "./icons/IconFile.vue": () => import("./icons-Be1wtE70.js").then((e) => e.c$),
151
+ "./icons/IconFileSystem.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d0),
152
+ "./icons/IconFileUpload.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d1),
153
+ "./icons/IconFilter.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d2),
154
+ "./icons/IconFolder.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d3),
155
+ "./icons/IconFreddyHub.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d4),
156
+ "./icons/IconFreddyHubLogo.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d5),
157
+ "./icons/IconFreddyHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d6),
158
+ "./icons/IconFreddyHubTitle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d7),
159
+ "./icons/IconFreddySmall.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d8),
160
+ "./icons/IconGlobExpand.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d9),
161
+ "./icons/IconGlobe.vue": () => import("./icons-Be1wtE70.js").then((e) => e.da),
162
+ "./icons/IconGoogle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.db),
163
+ "./icons/IconHollowCircle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dc),
164
+ "./icons/IconHome.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dd),
165
+ "./icons/IconInfoRounded.vue": () => import("./icons-Be1wtE70.js").then((e) => e.de),
166
+ "./icons/IconInvalidInvoice.vue": () => import("./icons-Be1wtE70.js").then((e) => e.df),
167
+ "./icons/IconInvoice.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dg),
168
+ "./icons/IconInvoiceSwitch.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dh),
169
+ "./icons/IconLapTableBottom.vue": () => import("./icons-Be1wtE70.js").then((e) => e.di),
170
+ "./icons/IconLense.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dj),
171
+ "./icons/IconLightCross.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dk),
172
+ "./icons/IconLink04.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dl),
173
+ "./icons/IconLoadingError.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dm),
174
+ "./icons/IconLoadingOrg.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dn),
175
+ "./icons/IconLocationWithCircleIn.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dp),
176
+ "./icons/IconLock.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dq),
177
+ "./icons/IconMarketPlace.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dr),
178
+ "./icons/IconMaximize.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ds),
179
+ "./icons/IconMicrophone.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dt),
180
+ "./icons/IconMutedMicrophone.vue": () => import("./icons-Be1wtE70.js").then((e) => e.du),
181
+ "./icons/IconNewNotification.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dv),
182
+ "./icons/IconNewTab.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dw),
183
+ "./icons/IconNotification.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dx),
184
+ "./icons/IconOpenBook.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dy),
185
+ "./icons/IconPaperAirPlane.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dz),
186
+ "./icons/IconPauseCircle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dA),
187
+ "./icons/IconPdfThumbnail.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dB),
188
+ "./icons/IconPenEdit.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dC),
189
+ "./icons/IconPencil.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dD),
190
+ "./icons/IconPeopleHub.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dE),
191
+ "./icons/IconPersonCircle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dF),
192
+ "./icons/IconPits.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dG),
193
+ "./icons/IconPlay.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dH),
194
+ "./icons/IconPlus.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dI),
195
+ "./icons/IconPolygonDown.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dJ),
196
+ "./icons/IconPresentation.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dK),
197
+ "./icons/IconProgressBase.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dL),
198
+ "./icons/IconProgressComplete.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dM),
199
+ "./icons/IconProgressGoing.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dN),
200
+ "./icons/IconPurpose.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dO),
201
+ "./icons/IconPurseCircleFill.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dP),
202
+ "./icons/IconQuestion.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dQ),
203
+ "./icons/IconRadio.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dR),
204
+ "./icons/IconRadioFill.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dS),
205
+ "./icons/IconRefresh.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dT),
206
+ "./icons/IconRevertedTriangle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dU),
207
+ "./icons/IconRobotScreen.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dV),
208
+ "./icons/IconRoundTick.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dW),
209
+ "./icons/IconSearch.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dX),
210
+ "./icons/IconSearchOptimised.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dY),
211
+ "./icons/IconSectionHide.vue": () => import("./icons-Be1wtE70.js").then((e) => e.dZ),
212
+ "./icons/IconSend.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d_),
213
+ "./icons/IconSettings.vue": () => import("./icons-Be1wtE70.js").then((e) => e.d$),
214
+ "./icons/IconSettingsBold.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e0),
215
+ "./icons/IconSize.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e1),
216
+ "./icons/IconSliderKnobs.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e2),
217
+ "./icons/IconSortIdle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e3),
218
+ "./icons/IconSparkle.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e4),
219
+ "./icons/IconSpotlio.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e5),
220
+ "./icons/IconStar.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e6),
221
+ "./icons/IconStatistics.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e7),
222
+ "./icons/IconStopChat.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e8),
223
+ "./icons/IconStreamLineHub.vue": () => import("./icons-Be1wtE70.js").then((e) => e.e9),
224
+ "./icons/IconStreamLineHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ea),
225
+ "./icons/IconSun.vue": () => import("./icons-Be1wtE70.js").then((e) => e.eb),
226
+ "./icons/IconSwap.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ec),
227
+ "./icons/IconText.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ed),
228
+ "./icons/IconTextThumbnail.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ee),
229
+ "./icons/IconThinDocument.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ef),
230
+ "./icons/IconThinFile.vue": () => import("./icons-Be1wtE70.js").then((e) => e.eg),
231
+ "./icons/IconThumbsDown.vue": () => import("./icons-Be1wtE70.js").then((e) => e.eh),
232
+ "./icons/IconTick.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ei),
233
+ "./icons/IconUser.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ej),
234
+ "./icons/IconVerticalDots.vue": () => import("./icons-Be1wtE70.js").then((e) => e.ek),
235
+ "./icons/IconVideoCamera.vue": () => import("./icons-Be1wtE70.js").then((e) => e.el),
236
+ "./icons/IconWarningOctal.vue": () => import("./icons-Be1wtE70.js").then((e) => e.em),
237
+ "./icons/IconX.vue": () => import("./icons-Be1wtE70.js").then((e) => e.en),
238
+ "./icons/IconZip.vue": () => import("./icons-Be1wtE70.js").then((e) => e.eo)
239
+ });
240
+ for (const e in i) {
241
+ const s = ((m = e.split("/").pop()) == null ? void 0 : m.replace(".vue", "")) || "";
242
+ s && i[e] && y.component(
243
+ s,
244
+ R({
245
+ loader: async () => {
246
+ const l = await i[e]();
247
+ return l.default || l;
248
+ },
249
+ delay: 0,
250
+ timeout: 0
251
+ })
252
+ );
253
+ }
254
+ } catch {
255
+ typeof process < "u" && process.env.NODE_ENV;
250
256
  }
251
257
  }
252
258
  }, Kl = {
@@ -269,7 +275,7 @@ const xt = [
269
275
  xmlns: "http://www.w3.org/2000/svg",
270
276
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
271
277
  viewBox: "0 0 800 600",
272
- class: A(["spaceman-logo", m.customClass]),
278
+ class: D(["spaceman-logo", m.customClass]),
273
279
  style: ne(m.customStyle)
274
280
  }, [...i[0] || (i[0] = [
275
281
  Ge(`<g><defs><clipPath id="GlassClip"><path d="M380.857,346.164c-1.247,4.651-4.668,8.421-9.196,10.06c-9.332,3.377-26.2,7.817-42.301,3.5
@@ -308,10 +314,10 @@ const xt = [
308
314
  278.436,375.599 383.003,264.076 364.393,251.618 264.807,364.928 "></polygon></g></g></g></g>`, 1)
309
315
  ])], 6));
310
316
  }
311
- }), Dt = {
317
+ }), At = {
312
318
  key: 0,
313
319
  class: "fixed z-[9998] top-0 left-0 w-full h-full bg-modalBackgroundBlur flex justify-center items-center"
314
- }, At = { class: "flex justify-center items-center" }, Bt = { class: "modal-header" }, Ft = { class: "modal-body" }, Mt = { class: "modal-footer" }, Wl = /* @__PURE__ */ N({
320
+ }, Dt = { class: "flex justify-center items-center" }, Bt = { class: "modal-header" }, Ft = { class: "modal-body" }, Mt = { class: "modal-footer" }, Wl = /* @__PURE__ */ N({
315
321
  __name: "AdvancedModal",
316
322
  props: {
317
323
  isVisible: { type: Boolean },
@@ -320,10 +326,10 @@ const xt = [
320
326
  setup(y) {
321
327
  return (m, i) => (c(), E(ce, { name: "modal" }, {
322
328
  default: Z(() => [
323
- m.isVisible ? (c(), f("div", Dt, [
324
- a("div", At, [
329
+ m.isVisible ? (c(), f("div", At, [
330
+ a("div", Dt, [
325
331
  a("div", {
326
- class: A({
332
+ class: D({
327
333
  "p-8 bg-background rounded-[2.5rem] overflow-hidden text-white 2xl:w-[56.25rem] xl:w-[56.25rem] lg:w-[56.25rem] md:w-[45.625rem] sm:w-[31.25rem] xs:w-auto": m.largeModel
328
334
  })
329
335
  }, [
@@ -361,7 +367,7 @@ const xt = [
361
367
  i("assistantFieldClick", s);
362
368
  };
363
369
  return (s, l) => (c(), f("div", {
364
- class: A(["freddy-assistant-field", { "freddy-assistant-field--selected": s.isSelected }]),
370
+ class: D(["freddy-assistant-field", { "freddy-assistant-field--selected": s.isSelected }]),
365
371
  onClick: e
366
372
  }, [
367
373
  a("div", Lt, [
@@ -386,7 +392,7 @@ const xt = [
386
392
  },
387
393
  emits: ["assistantClick"],
388
394
  setup(y, { emit: m }) {
389
- const i = y, e = m, s = D(i.selectedAssistantId), l = M(() => {
395
+ const i = y, e = m, s = A(i.selectedAssistantId), l = M(() => {
390
396
  const u = i.selectedAssistantId ?? s.value;
391
397
  return i.assistants.map((d) => ({
392
398
  ...d,
@@ -427,10 +433,10 @@ const xt = [
427
433
  }, qt = ["src"], Jt = {
428
434
  key: 1,
429
435
  class: "freddy-assistants-header__icon-with-edit"
430
- }, Qt = {
436
+ }, Yt = {
431
437
  key: 2,
432
438
  class: "freddy-assistants-header__side-icon"
433
- }, Yt = { class: "freddy-assistants-header__content" }, Xt = { class: "freddy-assistants-header__content-inner" }, eo = { class: "freddy-assistants-header__text-content" }, to = { class: "freddy-assistants-header__id-badge" }, oo = { class: "freddy-assistants-header__actions" }, Jl = /* @__PURE__ */ N({
439
+ }, Qt = { class: "freddy-assistants-header__content" }, Xt = { class: "freddy-assistants-header__content-inner" }, eo = { class: "freddy-assistants-header__text-content" }, to = { class: "freddy-assistants-header__id-badge" }, oo = { class: "freddy-assistants-header__actions" }, Jl = /* @__PURE__ */ N({
434
440
  __name: "AssistantsHeader",
435
441
  props: {
436
442
  assistantImage: { default: void 0 },
@@ -444,11 +450,11 @@ const xt = [
444
450
  }, l = (d) => {
445
451
  e("playground", d);
446
452
  }, r = (d) => d ? R(
447
- () => be(/* @__PURE__ */ Object.assign({ "../../icons/IconAddFileSystem.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c2), "../../icons/IconAddPeople.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c3), "../../icons/IconAitronos.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c4), "../../icons/IconApple.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c5), "../../icons/IconApplePay.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c6), "../../icons/IconArrowDown.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c7), "../../icons/IconArrowLeft.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c8), "../../icons/IconArrowUp.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c9), "../../icons/IconBadgeCheck.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ca), "../../icons/IconBroom.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cb), "../../icons/IconBuildings.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cc), "../../icons/IconCalendarWithTickInside.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cd), "../../icons/IconCallNotAllowed.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ce), "../../icons/IconCardPay.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cf), "../../icons/IconCaution.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cg), "../../icons/IconChangeLog.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ch), "../../icons/IconCheckCircleFill.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ci), "../../icons/IconCheckInCircle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cj), "../../icons/IconCheckRounded.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ck), "../../icons/IconChevronDown.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cl), "../../icons/IconChevronLeft.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cm), "../../icons/IconChevronRight.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cn), "../../icons/IconChevronUp.vue": () => import("./icons-DpyIf23e.js").then((o) => o.co), "../../icons/IconCircledCheck.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cp), "../../icons/IconClock.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cq), "../../icons/IconClosedEnvelope.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cr), "../../icons/IconCloudUpload.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cs), "../../icons/IconConnectorConfluence.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ct), "../../icons/IconConnectorFigma.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cu), "../../icons/IconConnectorFreshDesk.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cv), "../../icons/IconConnectorGitHub.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cw), "../../icons/IconConnectorJira.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cx), "../../icons/IconConnectorLinear.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cy), "../../icons/IconConnectorNotion.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cz), "../../icons/IconConnectorSlack.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cA), "../../icons/IconConnectorZapier.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cB), "../../icons/IconCopy.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cC), "../../icons/IconCross.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cD), "../../icons/IconCrossCircleFill.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cE), "../../icons/IconCrossInCircle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cF), "../../icons/IconCurrentTick.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cG), "../../icons/IconDataUpload.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cH), "../../icons/IconDelete.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cI), "../../icons/IconDeleteFillRed.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cJ), "../../icons/IconDialingPhone.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cK), "../../icons/IconDisabledAlert.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cL), "../../icons/IconDocumentation.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cM), "../../icons/IconDownload.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cN), "../../icons/IconDribbble.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cO), "../../icons/IconDropdownArrow.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cP), "../../icons/IconEdit.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cQ), "../../icons/IconEditLinePath.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cR), "../../icons/IconEllipse.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cS), "../../icons/IconExcelThumbnail.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cT), "../../icons/IconEye.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cU), "../../icons/IconFacebook.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cV), "../../icons/IconFigma.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cW), "../../icons/IconFile.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cX), "../../icons/IconFileSystem.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cY), "../../icons/IconFileUpload.vue": () => import("./icons-DpyIf23e.js").then((o) => o.cZ), "../../icons/IconFilter.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c_), "../../icons/IconFolder.vue": () => import("./icons-DpyIf23e.js").then((o) => o.c$), "../../icons/IconFreddyHub.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d0), "../../icons/IconFreddyHubLogo.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d1), "../../icons/IconFreddyHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d2), "../../icons/IconFreddyHubTitle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d3), "../../icons/IconFreddySmall.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d4), "../../icons/IconGlobExpand.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d5), "../../icons/IconGlobe.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d6), "../../icons/IconGoogle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d7), "../../icons/IconHollowCircle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d8), "../../icons/IconHome.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d9), "../../icons/IconInfoRounded.vue": () => import("./icons-DpyIf23e.js").then((o) => o.da), "../../icons/IconInvalidInvoice.vue": () => import("./icons-DpyIf23e.js").then((o) => o.db), "../../icons/IconInvoice.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dc), "../../icons/IconInvoiceSwitch.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dd), "../../icons/IconLapTableBottom.vue": () => import("./icons-DpyIf23e.js").then((o) => o.de), "../../icons/IconLense.vue": () => import("./icons-DpyIf23e.js").then((o) => o.df), "../../icons/IconLightCross.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dg), "../../icons/IconLink04.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dh), "../../icons/IconLoadingError.vue": () => import("./icons-DpyIf23e.js").then((o) => o.di), "../../icons/IconLoadingOrg.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dj), "../../icons/IconLocationWithCircleIn.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dk), "../../icons/IconLock.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dl), "../../icons/IconMarketPlace.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dm), "../../icons/IconMaximize.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dn), "../../icons/IconMicrophone.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dp), "../../icons/IconMutedMicrophone.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dq), "../../icons/IconNewNotification.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dr), "../../icons/IconNewTab.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ds), "../../icons/IconNotification.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dt), "../../icons/IconOpenBook.vue": () => import("./icons-DpyIf23e.js").then((o) => o.du), "../../icons/IconPaperAirPlane.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dv), "../../icons/IconPauseCircle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dw), "../../icons/IconPdfThumbnail.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dx), "../../icons/IconPenEdit.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dy), "../../icons/IconPencil.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dz), "../../icons/IconPeopleHub.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dA), "../../icons/IconPersonCircle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dB), "../../icons/IconPits.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dC), "../../icons/IconPlay.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dD), "../../icons/IconPlus.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dE), "../../icons/IconPolygonDown.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dF), "../../icons/IconPresentation.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dG), "../../icons/IconProgressBase.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dH), "../../icons/IconProgressComplete.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dI), "../../icons/IconProgressGoing.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dJ), "../../icons/IconPurpose.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dK), "../../icons/IconPurseCircleFill.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dL), "../../icons/IconQuestion.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dM), "../../icons/IconRadio.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dN), "../../icons/IconRadioFill.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dO), "../../icons/IconRefresh.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dP), "../../icons/IconRevertedTriangle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dQ), "../../icons/IconRobotScreen.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dR), "../../icons/IconRoundTick.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dS), "../../icons/IconSearch.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dT), "../../icons/IconSearchOptimised.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dU), "../../icons/IconSectionHide.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dV), "../../icons/IconSend.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dW), "../../icons/IconSettings.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dX), "../../icons/IconSettingsBold.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dY), "../../icons/IconSize.vue": () => import("./icons-DpyIf23e.js").then((o) => o.dZ), "../../icons/IconSliderKnobs.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d_), "../../icons/IconSortIdle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.d$), "../../icons/IconSparkle.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e0), "../../icons/IconSpotlio.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e1), "../../icons/IconStar.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e2), "../../icons/IconStatistics.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e3), "../../icons/IconStopChat.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e4), "../../icons/IconStreamLineHub.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e5), "../../icons/IconStreamLineHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e6), "../../icons/IconSun.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e7), "../../icons/IconSwap.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e8), "../../icons/IconText.vue": () => import("./icons-DpyIf23e.js").then((o) => o.e9), "../../icons/IconTextThumbnail.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ea), "../../icons/IconThinDocument.vue": () => import("./icons-DpyIf23e.js").then((o) => o.eb), "../../icons/IconThinFile.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ec), "../../icons/IconThumbsDown.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ed), "../../icons/IconTick.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ee), "../../icons/IconUser.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ef), "../../icons/IconVerticalDots.vue": () => import("./icons-DpyIf23e.js").then((o) => o.eg), "../../icons/IconVideoCamera.vue": () => import("./icons-DpyIf23e.js").then((o) => o.eh), "../../icons/IconWarningOctal.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ei), "../../icons/IconX.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ej), "../../icons/IconZip.vue": () => import("./icons-DpyIf23e.js").then((o) => o.ek) }), `../../icons/${d}.vue`, 4).catch(() => import("./icons-DpyIf23e.js").then((o) => o.dR))
453
+ () => be(/* @__PURE__ */ Object.assign({ "../../icons/IconAddChatPop.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c4), "../../icons/IconAddFileSystem.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c5), "../../icons/IconAddPeople.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c6), "../../icons/IconAitronos.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c7), "../../icons/IconApple.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c8), "../../icons/IconApplePay.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c9), "../../icons/IconAppsGrid.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ca), "../../icons/IconArrowDown.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cb), "../../icons/IconArrowLeft.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cc), "../../icons/IconArrowUp.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cd), "../../icons/IconBadgeCheck.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ce), "../../icons/IconBroom.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cf), "../../icons/IconBuildings.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cg), "../../icons/IconCalendarWithTickInside.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ch), "../../icons/IconCallNotAllowed.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ci), "../../icons/IconCardPay.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cj), "../../icons/IconCaution.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ck), "../../icons/IconChangeLog.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cl), "../../icons/IconCheckCircleFill.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cm), "../../icons/IconCheckInCircle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cn), "../../icons/IconCheckRounded.vue": () => import("./icons-Be1wtE70.js").then((o) => o.co), "../../icons/IconChevronDown.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cp), "../../icons/IconChevronLeft.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cq), "../../icons/IconChevronRight.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cr), "../../icons/IconChevronUp.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cs), "../../icons/IconCircledCheck.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ct), "../../icons/IconClock.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cu), "../../icons/IconClosedEnvelope.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cv), "../../icons/IconCloudUpload.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cw), "../../icons/IconConnectorConfluence.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cx), "../../icons/IconConnectorFigma.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cy), "../../icons/IconConnectorFreshDesk.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cz), "../../icons/IconConnectorGitHub.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cA), "../../icons/IconConnectorJira.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cB), "../../icons/IconConnectorLinear.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cC), "../../icons/IconConnectorNotion.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cD), "../../icons/IconConnectorSlack.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cE), "../../icons/IconConnectorZapier.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cF), "../../icons/IconCopy.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cG), "../../icons/IconCross.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cH), "../../icons/IconCrossCircleFill.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cI), "../../icons/IconCrossInCircle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cJ), "../../icons/IconCurrentTick.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cK), "../../icons/IconDataUpload.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cL), "../../icons/IconDelete.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cM), "../../icons/IconDeleteFillRed.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cN), "../../icons/IconDialingPhone.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cO), "../../icons/IconDisabledAlert.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cP), "../../icons/IconDocumentation.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cQ), "../../icons/IconDownload.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cR), "../../icons/IconDribbble.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cS), "../../icons/IconDropdownArrow.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cT), "../../icons/IconEdit.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cU), "../../icons/IconEditLinePath.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cV), "../../icons/IconEllipse.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cW), "../../icons/IconExcelThumbnail.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cX), "../../icons/IconEye.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cY), "../../icons/IconFacebook.vue": () => import("./icons-Be1wtE70.js").then((o) => o.cZ), "../../icons/IconFigma.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c_), "../../icons/IconFile.vue": () => import("./icons-Be1wtE70.js").then((o) => o.c$), "../../icons/IconFileSystem.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d0), "../../icons/IconFileUpload.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d1), "../../icons/IconFilter.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d2), "../../icons/IconFolder.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d3), "../../icons/IconFreddyHub.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d4), "../../icons/IconFreddyHubLogo.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d5), "../../icons/IconFreddyHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d6), "../../icons/IconFreddyHubTitle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d7), "../../icons/IconFreddySmall.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d8), "../../icons/IconGlobExpand.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d9), "../../icons/IconGlobe.vue": () => import("./icons-Be1wtE70.js").then((o) => o.da), "../../icons/IconGoogle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.db), "../../icons/IconHollowCircle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dc), "../../icons/IconHome.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dd), "../../icons/IconInfoRounded.vue": () => import("./icons-Be1wtE70.js").then((o) => o.de), "../../icons/IconInvalidInvoice.vue": () => import("./icons-Be1wtE70.js").then((o) => o.df), "../../icons/IconInvoice.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dg), "../../icons/IconInvoiceSwitch.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dh), "../../icons/IconLapTableBottom.vue": () => import("./icons-Be1wtE70.js").then((o) => o.di), "../../icons/IconLense.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dj), "../../icons/IconLightCross.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dk), "../../icons/IconLink04.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dl), "../../icons/IconLoadingError.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dm), "../../icons/IconLoadingOrg.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dn), "../../icons/IconLocationWithCircleIn.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dp), "../../icons/IconLock.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dq), "../../icons/IconMarketPlace.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dr), "../../icons/IconMaximize.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ds), "../../icons/IconMicrophone.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dt), "../../icons/IconMutedMicrophone.vue": () => import("./icons-Be1wtE70.js").then((o) => o.du), "../../icons/IconNewNotification.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dv), "../../icons/IconNewTab.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dw), "../../icons/IconNotification.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dx), "../../icons/IconOpenBook.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dy), "../../icons/IconPaperAirPlane.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dz), "../../icons/IconPauseCircle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dA), "../../icons/IconPdfThumbnail.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dB), "../../icons/IconPenEdit.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dC), "../../icons/IconPencil.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dD), "../../icons/IconPeopleHub.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dE), "../../icons/IconPersonCircle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dF), "../../icons/IconPits.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dG), "../../icons/IconPlay.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dH), "../../icons/IconPlus.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dI), "../../icons/IconPolygonDown.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dJ), "../../icons/IconPresentation.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dK), "../../icons/IconProgressBase.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dL), "../../icons/IconProgressComplete.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dM), "../../icons/IconProgressGoing.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dN), "../../icons/IconPurpose.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dO), "../../icons/IconPurseCircleFill.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dP), "../../icons/IconQuestion.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dQ), "../../icons/IconRadio.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dR), "../../icons/IconRadioFill.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dS), "../../icons/IconRefresh.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dT), "../../icons/IconRevertedTriangle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dU), "../../icons/IconRobotScreen.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dV), "../../icons/IconRoundTick.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dW), "../../icons/IconSearch.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dX), "../../icons/IconSearchOptimised.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dY), "../../icons/IconSectionHide.vue": () => import("./icons-Be1wtE70.js").then((o) => o.dZ), "../../icons/IconSend.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d_), "../../icons/IconSettings.vue": () => import("./icons-Be1wtE70.js").then((o) => o.d$), "../../icons/IconSettingsBold.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e0), "../../icons/IconSize.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e1), "../../icons/IconSliderKnobs.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e2), "../../icons/IconSortIdle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e3), "../../icons/IconSparkle.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e4), "../../icons/IconSpotlio.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e5), "../../icons/IconStar.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e6), "../../icons/IconStatistics.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e7), "../../icons/IconStopChat.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e8), "../../icons/IconStreamLineHub.vue": () => import("./icons-Be1wtE70.js").then((o) => o.e9), "../../icons/IconStreamLineHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ea), "../../icons/IconSun.vue": () => import("./icons-Be1wtE70.js").then((o) => o.eb), "../../icons/IconSwap.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ec), "../../icons/IconText.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ed), "../../icons/IconTextThumbnail.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ee), "../../icons/IconThinDocument.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ef), "../../icons/IconThinFile.vue": () => import("./icons-Be1wtE70.js").then((o) => o.eg), "../../icons/IconThumbsDown.vue": () => import("./icons-Be1wtE70.js").then((o) => o.eh), "../../icons/IconTick.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ei), "../../icons/IconUser.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ej), "../../icons/IconVerticalDots.vue": () => import("./icons-Be1wtE70.js").then((o) => o.ek), "../../icons/IconVideoCamera.vue": () => import("./icons-Be1wtE70.js").then((o) => o.el), "../../icons/IconWarningOctal.vue": () => import("./icons-Be1wtE70.js").then((o) => o.em), "../../icons/IconX.vue": () => import("./icons-Be1wtE70.js").then((o) => o.en), "../../icons/IconZip.vue": () => import("./icons-Be1wtE70.js").then((o) => o.eo) }), `../../icons/${d}.vue`, 4).catch(() => import("./icons-Be1wtE70.js").then((o) => o.dV))
448
454
  ) : Fe, u = M(() => r(i.assistantIcon));
449
455
  return (d, o) => (c(), f("div", Zt, [
450
456
  a("div", {
451
- class: A(["freddy-assistants-header__avatar-section", {
457
+ class: D(["freddy-assistants-header__avatar-section", {
452
458
  "freddy-assistants-header__avatar-section--with-image": d.assistantImage,
453
459
  "freddy-assistants-header__avatar-section--no-image": !d.assistantImage
454
460
  }])
@@ -474,11 +480,11 @@ const xt = [
474
480
  L(F(pe), { class: "freddy-assistants-header__edit-icon" })
475
481
  ])
476
482
  ])),
477
- d.assistantImage && d.assistantIcon ? (c(), f("div", Qt, [
483
+ d.assistantImage && d.assistantIcon ? (c(), f("div", Yt, [
478
484
  (c(), E(K(u.value), { class: "freddy-assistants-header__side-icon-component" }))
479
485
  ])) : S("", !0)
480
486
  ], 2),
481
- a("div", Yt, [
487
+ a("div", Qt, [
482
488
  a("div", Xt, [
483
489
  a("div", eo, [
484
490
  a("div", to, B(d.assistantId || "assistant ID"), 1)
@@ -490,7 +496,7 @@ const xt = [
490
496
  class: "freddy-assistants-header__playground-button",
491
497
  onClick: l
492
498
  }, [
493
- L(F(Qe), { class: "freddy-assistants-header__playground-icon" }),
499
+ L(F(Ye), { class: "freddy-assistants-header__playground-icon" }),
494
500
  o[0] || (o[0] = a("span", { class: "freddy-assistants-header__playground-label" }, "Playground", -1))
495
501
  ])
496
502
  ])
@@ -516,7 +522,7 @@ const xt = [
516
522
  i("click", s);
517
523
  };
518
524
  return (s, l) => (c(), f("div", {
519
- class: A(["freddy-avatar-choosing", { "freddy-avatar-choosing--selected": s.isSelected }]),
525
+ class: D(["freddy-avatar-choosing", { "freddy-avatar-choosing--selected": s.isSelected }]),
520
526
  onClick: e
521
527
  }, [
522
528
  a("div", {
@@ -540,7 +546,7 @@ const xt = [
540
546
  }, ro = { class: "freddy-avatar-list__grid" }, uo = {
541
547
  key: 1,
542
548
  class: "freddy-avatar-list__selected-info"
543
- }, Ql = /* @__PURE__ */ N({
549
+ }, Yl = /* @__PURE__ */ N({
544
550
  __name: "AvatarList",
545
551
  props: {
546
552
  avatars: {},
@@ -551,7 +557,7 @@ const xt = [
551
557
  },
552
558
  emits: ["selectionChange", "avatarClick"],
553
559
  setup(y, { expose: m, emit: i }) {
554
- const e = y, s = i, l = D(null), r = M(() => e.avatars.find((d) => d.id === l.value) || null), u = (d) => {
560
+ const e = y, s = i, l = A(null), r = M(() => e.avatars.find((d) => d.id === l.value) || null), u = (d) => {
555
561
  l.value === d && e.allowDeselect ? l.value = null : l.value = d, s("selectionChange", l.value), s("avatarClick", d, l.value === d);
556
562
  };
557
563
  return m({
@@ -585,7 +591,7 @@ const xt = [
585
591
  }), po = { class: "freddy-choose-assistant-avatar" }, ho = { class: "freddy-choose-assistant-avatar__header" }, fo = { class: "freddy-choose-assistant-avatar__title-section" }, mo = { class: "freddy-choose-assistant-avatar__title-row" }, vo = { class: "freddy-choose-assistant-avatar__title" }, yo = ["aria-label"], go = { class: "freddy-choose-assistant-avatar__description" }, Io = { class: "freddy-choose-assistant-avatar__content" }, bo = { class: "freddy-choose-assistant-avatar__section" }, ko = { class: "freddy-choose-assistant-avatar__icon-container" }, _o = { class: "freddy-choose-assistant-avatar__icon-search" }, Co = ["aria-label"], wo = { class: "freddy-choose-assistant-avatar__icon-grid" }, So = ["onClick", "title"], To = { class: "freddy-choose-assistant-avatar__icon-wrapper" }, $o = {
586
592
  key: 1,
587
593
  class: "freddy-choose-assistant-avatar__icon-placeholder"
588
- }, xo = { class: "freddy-choose-assistant-avatar__section" }, Po = { class: "freddy-choose-assistant-avatar__voice-list" }, Do = { class: "freddy-choose-assistant-avatar__actions" }, Ao = ["disabled"], Yl = /* @__PURE__ */ N({
594
+ }, xo = { class: "freddy-choose-assistant-avatar__section" }, Po = { class: "freddy-choose-assistant-avatar__voice-list" }, Ao = { class: "freddy-choose-assistant-avatar__actions" }, Do = ["disabled"], Ql = /* @__PURE__ */ N({
589
595
  __name: "ChooseAssistantAvatar",
590
596
  props: {
591
597
  title: { default: "Choose your assistant" },
@@ -629,7 +635,7 @@ const xt = [
629
635
  });
630
636
  }
631
637
  return t;
632
- }, l = M(() => e.icons.length > 0 ? e.icons : s()), r = i, u = D(null), d = D(null), o = D(null), g = D(""), b = M(() => g.value ? l.value.filter(
638
+ }, l = M(() => e.icons.length > 0 ? e.icons : s()), r = i, u = A(null), d = A(null), o = A(null), g = A(""), b = M(() => g.value ? l.value.filter(
633
639
  (h) => {
634
640
  var w;
635
641
  return (w = h.name) == null ? void 0 : w.toLowerCase().includes(g.value.toLowerCase());
@@ -686,7 +692,7 @@ const xt = [
686
692
  onClick: $,
687
693
  "aria-label": t.uploadButtonAriaLabel
688
694
  }, [
689
- L(F(Ye), { class: "freddy-choose-assistant-avatar__upload-icon" })
695
+ L(F(Qe), { class: "freddy-choose-assistant-avatar__upload-icon" })
690
696
  ], 8, Co),
691
697
  L(F(_e), {
692
698
  searchInput: g.value,
@@ -703,7 +709,7 @@ const xt = [
703
709
  var n;
704
710
  return c(), f("div", {
705
711
  key: w.id || _,
706
- class: A(["freddy-choose-assistant-avatar__icon-item", {
712
+ class: D(["freddy-choose-assistant-avatar__icon-item", {
707
713
  "freddy-choose-assistant-avatar__icon-item--selected": u.value === w.id
708
714
  }]),
709
715
  onClick: (q) => k(w),
@@ -737,7 +743,7 @@ const xt = [
737
743
  }, null, 8, ["voiceName", "isSelected", "onClick"]))), 128))
738
744
  ])
739
745
  ]),
740
- a("div", Do, [
746
+ a("div", Ao, [
741
747
  a("button", {
742
748
  class: "freddy-choose-assistant-avatar__cancel-button",
743
749
  onClick: v
@@ -746,7 +752,7 @@ const xt = [
746
752
  class: "freddy-choose-assistant-avatar__save-button",
747
753
  onClick: T,
748
754
  disabled: !P.value
749
- }, B(t.saveButtonText), 9, Ao)
755
+ }, B(t.saveButtonText), 9, Do)
750
756
  ])
751
757
  ])
752
758
  ]));
@@ -775,7 +781,7 @@ const xt = [
775
781
  "primary-active": "background-031525",
776
782
  "bg-primary-active-bordered": "background-border"
777
783
  }[g] || g;
778
- }), u = D(i.currentTab);
784
+ }), u = A(i.currentTab);
779
785
  G(
780
786
  () => i.currentTab,
781
787
  (o) => {
@@ -786,7 +792,7 @@ const xt = [
786
792
  u.value !== o.id && (u.value = o.id, e("tabSwitch", o.id));
787
793
  };
788
794
  return (o, g) => (c(), f("div", {
789
- class: A([
795
+ class: D([
790
796
  "freddy-plugin-nav-bar",
791
797
  `freddy-plugin-nav-bar--${l.value}`,
792
798
  `freddy-plugin-nav-bar--${r.value}`,
@@ -794,7 +800,7 @@ const xt = [
794
800
  ])
795
801
  }, [
796
802
  (c(!0), f(O, null, U(i.tabList, (b, P) => (c(), f("button", {
797
- class: A([
803
+ class: D([
798
804
  "freddy-plugin-menu-button",
799
805
  `freddy-plugin-menu-button--${r.value}`,
800
806
  { "freddy-plugin-menu-button--active": u.value === b.id },
@@ -814,7 +820,7 @@ const xt = [
814
820
  b.badge !== void 0 ? (c(), f("span", Mo, B(b.badge), 1)) : S("", !0),
815
821
  r.value === "bottom-dash" && u.value === b.id ? (c(), f("span", {
816
822
  key: 1,
817
- class: A({ "freddy-plugin-active-tab-bottom": u.value === b.id })
823
+ class: D({ "freddy-plugin-active-tab-bottom": u.value === b.id })
818
824
  }, null, 2)) : S("", !0)
819
825
  ], 42, Bo))), 128))
820
826
  ], 2));
@@ -835,7 +841,7 @@ const xt = [
835
841
  title: "Number of dependent rules",
836
842
  "aria-label": "Information about dependencies",
837
843
  role: "img"
838
- }, Go = { class: "rule-info" }, Zo = { class: "rule-title" }, Wo = { class: "rule-description" }, qo = ["aria-label"], Jo = { class: "dependencies-count" }, Qo = ["aria-label"], Yo = { class: "creator-info" }, Xo = { class: "creator-wrapper" }, en = ["src", "alt"], tn = { class: "creator-details" }, on = { class: "creator-name" }, nn = { class: "creator-username" }, sn = { class: "action-cell" }, an = ["aria-label"], ln = { class: "action-icons" }, cn = ["onClick", "onKeydown", "aria-label"], rn = ["onClick", "onKeydown", "aria-label"], dn = {
844
+ }, Go = { class: "rule-info" }, Zo = { class: "rule-title" }, Wo = { class: "rule-description" }, qo = ["aria-label"], Jo = { class: "dependencies-count" }, Yo = ["aria-label"], Qo = { class: "creator-info" }, Xo = { class: "creator-wrapper" }, en = ["src", "alt"], tn = { class: "creator-details" }, on = { class: "creator-name" }, nn = { class: "creator-username" }, sn = { class: "action-cell" }, an = ["aria-label"], ln = { class: "action-icons" }, cn = ["onClick", "onKeydown", "aria-label"], rn = ["onClick", "onKeydown", "aria-label"], dn = {
839
845
  class: "pagination-container",
840
846
  role: "navigation",
841
847
  "aria-label": "Pagination"
@@ -858,7 +864,7 @@ const xt = [
858
864
  },
859
865
  emits: ["search", "createRule", "tabChange", "edit", "view", "pageChange"],
860
866
  setup(y, { emit: m }) {
861
- const i = y, e = m, s = D(""), l = D(i.initialTab), r = D(1), u = M(() => i.tabs.map((p, t) => ({
867
+ const i = y, e = m, s = A(""), l = A(i.initialTab), r = A(1), u = M(() => i.tabs.map((p, t) => ({
862
868
  id: t + 1,
863
869
  title: p.label,
864
870
  badge: p.count,
@@ -919,7 +925,7 @@ const xt = [
919
925
  class: "search-icon",
920
926
  "aria-hidden": "true"
921
927
  }),
922
- Q(a("input", {
928
+ Y(a("input", {
923
929
  type: "text",
924
930
  class: "search-input",
925
931
  placeholder: "Search",
@@ -927,7 +933,7 @@ const xt = [
927
933
  onInput: P,
928
934
  "aria-label": "Search rules"
929
935
  }, null, 544), [
930
- [Y, s.value]
936
+ [Q, s.value]
931
937
  ]),
932
938
  t[1] || (t[1] = a("kbd", {
933
939
  class: "search-kbd",
@@ -1006,16 +1012,16 @@ const xt = [
1006
1012
  ]),
1007
1013
  a("td", null, [
1008
1014
  a("span", {
1009
- class: A(["status-badge", h.status.toLowerCase()]),
1015
+ class: D(["status-badge", h.status.toLowerCase()]),
1010
1016
  "aria-label": `Status: ${h.status}`
1011
1017
  }, B(h.status), 11, qo)
1012
1018
  ]),
1013
1019
  a("td", Jo, [
1014
1020
  a("span", {
1015
1021
  "aria-label": `${h.dependencies} dependencies`
1016
- }, B(h.dependencies), 9, Qo)
1022
+ }, B(h.dependencies), 9, Yo)
1017
1023
  ]),
1018
- a("td", Yo, [
1024
+ a("td", Qo, [
1019
1025
  a("div", Xo, [
1020
1026
  a("img", {
1021
1027
  src: h.creator.avatar,
@@ -1030,7 +1036,7 @@ const xt = [
1030
1036
  ]),
1031
1037
  a("td", sn, [
1032
1038
  a("span", {
1033
- class: A(["status-badge", h.status.toLowerCase()]),
1039
+ class: D(["status-badge", h.status.toLowerCase()]),
1034
1040
  "aria-label": `Status: ${h.status}`
1035
1041
  }, B(h.status), 11, an),
1036
1042
  a("div", ln, [
@@ -1079,7 +1085,7 @@ const xt = [
1079
1085
  a("div", pn, [
1080
1086
  (c(!0), f(O, null, U(b.value, (h) => (c(), f("button", {
1081
1087
  key: h,
1082
- class: A([
1088
+ class: D([
1083
1089
  "page-number",
1084
1090
  { active: r.value === h, ellipsis: h === "..." }
1085
1091
  ]),
@@ -1127,11 +1133,11 @@ const xt = [
1127
1133
  },
1128
1134
  emits: ["click"],
1129
1135
  setup(y, { emit: m }) {
1130
- const i = y, e = m, s = D(i.isSelected), l = (r) => {
1136
+ const i = y, e = m, s = A(i.isSelected), l = (r) => {
1131
1137
  s.value = !s.value, e("click", r);
1132
1138
  };
1133
1139
  return (r, u) => (c(), f("div", {
1134
- class: A(["freddy-vector-frame", { "freddy-vector-frame--clicked": s.value }]),
1140
+ class: D(["freddy-vector-frame", { "freddy-vector-frame--clicked": s.value }]),
1135
1141
  onClick: l
1136
1142
  }, [
1137
1143
  a("div", vn, [
@@ -1152,7 +1158,7 @@ const xt = [
1152
1158
  s.value ? (c(), f("div", Cn)) : S("", !0)
1153
1159
  ], 2));
1154
1160
  }
1155
- }), ec = /* @__PURE__ */ H(wn, [["__scopeId", "data-v-e2bc0b9f"]]), Sn = { class: "freddy-vector-section" }, Tn = { class: "freddy-vector-section__content" }, $n = { class: "freddy-vector-section__header" }, xn = { class: "freddy-vector-section__count" }, Pn = { class: "freddy-vector-section__main" }, Dn = { class: "freddy-vector-section__search-container" }, An = { class: "freddy-vector-section__search-header" }, Bn = { class: "freddy-vector-section__search-label" }, Fn = { class: "freddy-vector-section__help-icon" }, Mn = { class: "freddy-vector-section__search-input-container" }, Ln = { class: "freddy-vector-section__filter-results" }, Vn = { class: "freddy-vector-section__filter" }, En = { class: "freddy-vector-section__filter-button" }, Nn = { class: "freddy-vector-section__results-count" }, Rn = { class: "freddy-vector-section__frames-container" }, On = {
1161
+ }), ec = /* @__PURE__ */ H(wn, [["__scopeId", "data-v-e2bc0b9f"]]), Sn = { class: "freddy-vector-section" }, Tn = { class: "freddy-vector-section__content" }, $n = { class: "freddy-vector-section__header" }, xn = { class: "freddy-vector-section__count" }, Pn = { class: "freddy-vector-section__main" }, An = { class: "freddy-vector-section__search-container" }, Dn = { class: "freddy-vector-section__search-header" }, Bn = { class: "freddy-vector-section__search-label" }, Fn = { class: "freddy-vector-section__help-icon" }, Mn = { class: "freddy-vector-section__search-input-container" }, Ln = { class: "freddy-vector-section__filter-results" }, Vn = { class: "freddy-vector-section__filter" }, En = { class: "freddy-vector-section__filter-button" }, Nn = { class: "freddy-vector-section__results-count" }, Rn = { class: "freddy-vector-section__frames-container" }, On = {
1156
1162
  key: 0,
1157
1163
  class: "freddy-vector-section__show-more"
1158
1164
  }, zn = { class: "freddy-vector-section__show-more-text" }, Hn = { class: "freddy-vector-section__add-section" }, jn = { class: "freddy-vector-section__add-container" }, Un = /* @__PURE__ */ N({
@@ -1239,7 +1245,7 @@ const xt = [
1239
1245
  },
1240
1246
  emits: ["frameClick", "addVectorStore", "showMore", "searchInput"],
1241
1247
  setup(y, { emit: m }) {
1242
- const i = y, e = m, s = D(""), l = D(i.maxDisplayed), r = M(() => s.value.trim() ? i.frames.filter(
1248
+ const i = y, e = m, s = A(""), l = A(i.maxDisplayed), r = M(() => s.value.trim() ? i.frames.filter(
1243
1249
  (v) => v.title.toLowerCase().includes(s.value.toLowerCase())
1244
1250
  ) : i.frames), u = M(() => r.value.slice(0, l.value)), d = M(() => r.value.length), o = M(() => r.value.length > l.value), g = M(() => r.value.length - l.value), b = () => {
1245
1251
  e("addVectorStore");
@@ -1255,8 +1261,8 @@ const xt = [
1255
1261
  a("div", xn, B(v.dbCount) + " DBs added", 1)
1256
1262
  ]),
1257
1263
  a("div", Pn, [
1258
- a("div", Dn, [
1259
- a("div", An, [
1264
+ a("div", An, [
1265
+ a("div", Dn, [
1260
1266
  a("div", Bn, [
1261
1267
  T[2] || (T[2] = J(" Vector Stores ", -1)),
1262
1268
  a("div", Fn, [
@@ -1333,7 +1339,7 @@ const xt = [
1333
1339
  },
1334
1340
  emits: ["selectionChange", "voiceClick"],
1335
1341
  setup(y, { expose: m, emit: i }) {
1336
- const e = y, s = i, l = D(null), r = M(() => e.voices.find((d) => d.id === l.value) || null), u = (d) => {
1342
+ const e = y, s = i, l = A(null), r = M(() => e.voices.find((d) => d.id === l.value) || null), u = (d) => {
1337
1343
  l.value === d && e.allowDeselect ? l.value = null : l.value = d, s("selectionChange", l.value), s("voiceClick", d, l.value === d);
1338
1344
  };
1339
1345
  return m({
@@ -1363,7 +1369,7 @@ const xt = [
1363
1369
  ]);
1364
1370
  };
1365
1371
  }
1366
- }), qn = { class: "freddy-voice-selection__container" }, Jn = { class: "freddy-voice-selection__icon-container" }, Qn = { class: "freddy-voice-selection__icon" }, Yn = { class: "freddy-voice-selection__play-background" }, Xn = { class: "freddy-voice-selection__name-container" }, es = { class: "freddy-voice-selection__name-wrapper" }, ts = { class: "freddy-voice-selection__name" }, os = {
1372
+ }), qn = { class: "freddy-voice-selection__container" }, Jn = { class: "freddy-voice-selection__icon-container" }, Yn = { class: "freddy-voice-selection__icon" }, Qn = { class: "freddy-voice-selection__play-background" }, Xn = { class: "freddy-voice-selection__name-container" }, es = { class: "freddy-voice-selection__name-wrapper" }, ts = { class: "freddy-voice-selection__name" }, os = {
1367
1373
  key: 0,
1368
1374
  class: "freddy-voice-selection__check-icon"
1369
1375
  }, ns = {
@@ -1381,13 +1387,13 @@ const xt = [
1381
1387
  i("handleClick", s);
1382
1388
  };
1383
1389
  return (s, l) => (c(), f("div", {
1384
- class: A(["freddy-voice-selection", { "freddy-voice-selection--selected": s.isSelected }]),
1390
+ class: D(["freddy-voice-selection", { "freddy-voice-selection--selected": s.isSelected }]),
1385
1391
  onClick: e
1386
1392
  }, [
1387
1393
  a("div", qn, [
1388
1394
  a("div", Jn, [
1389
- a("div", Qn, [
1390
- a("div", Yn, [
1395
+ a("div", Yn, [
1396
+ a("div", Qn, [
1391
1397
  L(F(at), { class: "freddy-voice-selection__triangle-icon" })
1392
1398
  ])
1393
1399
  ])
@@ -1413,7 +1419,7 @@ const xt = [
1413
1419
  },
1414
1420
  setup(y) {
1415
1421
  te();
1416
- const m = D(!1), i = D(!1), e = D(null);
1422
+ const m = A(!1), i = A(!1), e = A(null);
1417
1423
  let s = null;
1418
1424
  function l() {
1419
1425
  s && clearTimeout(s), s = setTimeout(() => {
@@ -1442,7 +1448,7 @@ const xt = [
1442
1448
  default: Z(() => [
1443
1449
  m.value ? (c(), f("div", {
1444
1450
  key: 0,
1445
- class: A(["tooltip-content", [
1451
+ class: D(["tooltip-content", [
1446
1452
  u.placement,
1447
1453
  i.value ? "force-bottom" : "",
1448
1454
  u.contentClass
@@ -1492,51 +1498,51 @@ const xt = [
1492
1498
  emits: ["click", "leftIconClick", "rightIconClick"],
1493
1499
  setup(y, { emit: m }) {
1494
1500
  const i = y, e = {
1495
- IconSearch: R(() => import("./icons-DpyIf23e.js").then((v) => v.dT)),
1496
- IconUser: R(() => import("./icons-DpyIf23e.js").then((v) => v.ef)),
1497
- IconDelete: R(() => import("./icons-DpyIf23e.js").then((v) => v.cI)),
1498
- IconSend: R(() => import("./icons-DpyIf23e.js").then((v) => v.dW)),
1499
- IconPlus: R(() => import("./icons-DpyIf23e.js").then((v) => v.dE)),
1500
- IconEdit: R(() => import("./icons-DpyIf23e.js").then((v) => v.cQ)),
1501
- IconCross: R(() => import("./icons-DpyIf23e.js").then((v) => v.cD)),
1502
- IconTick: R(() => import("./icons-DpyIf23e.js").then((v) => v.ee)),
1501
+ IconSearch: R(() => import("./icons-Be1wtE70.js").then((v) => v.dX)),
1502
+ IconUser: R(() => import("./icons-Be1wtE70.js").then((v) => v.ej)),
1503
+ IconDelete: R(() => import("./icons-Be1wtE70.js").then((v) => v.cM)),
1504
+ IconSend: R(() => import("./icons-Be1wtE70.js").then((v) => v.d_)),
1505
+ IconPlus: R(() => import("./icons-Be1wtE70.js").then((v) => v.dI)),
1506
+ IconEdit: R(() => import("./icons-Be1wtE70.js").then((v) => v.cU)),
1507
+ IconCross: R(() => import("./icons-Be1wtE70.js").then((v) => v.cH)),
1508
+ IconTick: R(() => import("./icons-Be1wtE70.js").then((v) => v.ei)),
1503
1509
  IconArrowLeft: R(
1504
- () => import("./icons-DpyIf23e.js").then((v) => v.c8)
1510
+ () => import("./icons-Be1wtE70.js").then((v) => v.cc)
1505
1511
  ),
1506
1512
  IconArrowDown: R(
1507
- () => import("./icons-DpyIf23e.js").then((v) => v.c7)
1513
+ () => import("./icons-Be1wtE70.js").then((v) => v.cb)
1508
1514
  ),
1509
- IconArrowUp: R(() => import("./icons-DpyIf23e.js").then((v) => v.c9)),
1515
+ IconArrowUp: R(() => import("./icons-Be1wtE70.js").then((v) => v.cd)),
1510
1516
  IconChevronDown: R(
1511
- () => import("./icons-DpyIf23e.js").then((v) => v.cl)
1517
+ () => import("./icons-Be1wtE70.js").then((v) => v.cp)
1512
1518
  ),
1513
1519
  IconChevronUp: R(
1514
- () => import("./icons-DpyIf23e.js").then((v) => v.co)
1520
+ () => import("./icons-Be1wtE70.js").then((v) => v.cs)
1515
1521
  ),
1516
1522
  IconChevronLeft: R(
1517
- () => import("./icons-DpyIf23e.js").then((v) => v.cm)
1523
+ () => import("./icons-Be1wtE70.js").then((v) => v.cq)
1518
1524
  ),
1519
1525
  IconChevronRight: R(
1520
- () => import("./icons-DpyIf23e.js").then((v) => v.cn)
1526
+ () => import("./icons-Be1wtE70.js").then((v) => v.cr)
1521
1527
  ),
1522
1528
  IconSettings: R(
1523
- () => import("./icons-DpyIf23e.js").then((v) => v.dX)
1529
+ () => import("./icons-Be1wtE70.js").then((v) => v.d$)
1524
1530
  ),
1525
- IconHome: R(() => import("./icons-DpyIf23e.js").then((v) => v.d9)),
1531
+ IconHome: R(() => import("./icons-Be1wtE70.js").then((v) => v.dd)),
1526
1532
  IconDownload: R(
1527
- () => import("./icons-DpyIf23e.js").then((v) => v.cN)
1533
+ () => import("./icons-Be1wtE70.js").then((v) => v.cR)
1528
1534
  ),
1529
- IconRefresh: R(() => import("./icons-DpyIf23e.js").then((v) => v.dP)),
1530
- IconCopy: R(() => import("./icons-DpyIf23e.js").then((v) => v.cC)),
1531
- IconEye: R(() => import("./icons-DpyIf23e.js").then((v) => v.cU)),
1532
- IconLock: R(() => import("./icons-DpyIf23e.js").then((v) => v.dl)),
1533
- IconStar: R(() => import("./icons-DpyIf23e.js").then((v) => v.e2)),
1534
- IconFilter: R(() => import("./icons-DpyIf23e.js").then((v) => v.c_)),
1535
- IconFile: R(() => import("./icons-DpyIf23e.js").then((v) => v.cX)),
1536
- IconFolder: R(() => import("./icons-DpyIf23e.js").then((v) => v.c$)),
1537
- IconText: R(() => import("./icons-DpyIf23e.js").then((v) => v.e9)),
1538
- IconLink04: R(() => import("./icons-DpyIf23e.js").then((v) => v.dh))
1539
- }, s = M(() => i.leftIcon && e[i.leftIcon] || null), l = M(() => i.rightIcon && e[i.rightIcon] || null), r = m, u = D(!1), d = M(() => [
1535
+ IconRefresh: R(() => import("./icons-Be1wtE70.js").then((v) => v.dT)),
1536
+ IconCopy: R(() => import("./icons-Be1wtE70.js").then((v) => v.cG)),
1537
+ IconEye: R(() => import("./icons-Be1wtE70.js").then((v) => v.cY)),
1538
+ IconLock: R(() => import("./icons-Be1wtE70.js").then((v) => v.dq)),
1539
+ IconStar: R(() => import("./icons-Be1wtE70.js").then((v) => v.e6)),
1540
+ IconFilter: R(() => import("./icons-Be1wtE70.js").then((v) => v.d2)),
1541
+ IconFile: R(() => import("./icons-Be1wtE70.js").then((v) => v.c$)),
1542
+ IconFolder: R(() => import("./icons-Be1wtE70.js").then((v) => v.d3)),
1543
+ IconText: R(() => import("./icons-Be1wtE70.js").then((v) => v.ed)),
1544
+ IconLink04: R(() => import("./icons-Be1wtE70.js").then((v) => v.dl))
1545
+ }, s = M(() => i.leftIcon && e[i.leftIcon] || null), l = M(() => i.rightIcon && e[i.rightIcon] || null), r = m, u = A(!1), d = M(() => [
1540
1546
  "freddy-plugins-base-button",
1541
1547
  `freddy-plugins-base-button--${i.size}`,
1542
1548
  `freddy-plugins-base-button--${i.hierarchy}`,
@@ -1566,7 +1572,7 @@ const xt = [
1566
1572
  }, {
1567
1573
  default: Z(() => [
1568
1574
  a("button", {
1569
- class: A(d.value),
1575
+ class: D(d.value),
1570
1576
  disabled: v.disabled || v.loading,
1571
1577
  "aria-disabled": v.disabled || v.loading,
1572
1578
  "aria-label": v.iconOnly ? v.label : void 0,
@@ -1583,19 +1589,19 @@ const xt = [
1583
1589
  v.loadingText || v.label ? (c(), f("span", ls, B(v.loadingText || v.label), 1)) : S("", !0)
1584
1590
  ], 64)) : v.iconOnly ? (c(), E(K(s.value), {
1585
1591
  key: 1,
1586
- class: A(["freddy-plugins-button-icon freddy-plugins-button-icon-center", `freddy-plugins-button-icon--${v.size}`]),
1592
+ class: D(["freddy-plugins-button-icon freddy-plugins-button-icon-center", `freddy-plugins-button-icon--${v.size}`]),
1587
1593
  "aria-hidden": "true"
1588
1594
  }, null, 8, ["class"])) : (c(), f(O, { key: 2 }, [
1589
1595
  v.leftIcon ? (c(), E(K(s.value), {
1590
1596
  key: 0,
1591
- class: A(["freddy-plugins-button-icon freddy-plugins-button-icon-left", `freddy-plugins-button-icon--${v.size}`]),
1597
+ class: D(["freddy-plugins-button-icon freddy-plugins-button-icon-left", `freddy-plugins-button-icon--${v.size}`]),
1592
1598
  "aria-hidden": "true",
1593
1599
  onClick: j(g, ["stop"])
1594
1600
  }, null, 8, ["class"])) : S("", !0),
1595
1601
  v.label ? (c(), f("span", cs, B(v.label), 1)) : S("", !0),
1596
1602
  v.rightIcon ? (c(), E(K(l.value), {
1597
1603
  key: 2,
1598
- class: A(["freddy-plugins-button-icon freddy-plugins-button-icon-right", `freddy-plugins-button-icon--${v.size}`]),
1604
+ class: D(["freddy-plugins-button-icon freddy-plugins-button-icon-right", `freddy-plugins-button-icon--${v.size}`]),
1599
1605
  "aria-hidden": "true",
1600
1606
  onClick: j(b, ["stop"])
1601
1607
  }, null, 8, ["class"])) : S("", !0)
@@ -1605,7 +1611,7 @@ const xt = [
1605
1611
  _: 1
1606
1612
  }, 8, ["text", "placement"])) : (c(), f("button", {
1607
1613
  key: 1,
1608
- class: A(d.value),
1614
+ class: D(d.value),
1609
1615
  disabled: v.disabled || v.loading,
1610
1616
  "aria-disabled": v.disabled || v.loading,
1611
1617
  "aria-label": v.iconOnly ? v.label : void 0,
@@ -1622,19 +1628,19 @@ const xt = [
1622
1628
  v.loadingText || v.label ? (c(), f("span", ds, B(v.loadingText || v.label), 1)) : S("", !0)
1623
1629
  ], 64)) : v.iconOnly ? (c(), E(K(s.value), {
1624
1630
  key: 1,
1625
- class: A(["freddy-plugins-button-icon freddy-plugins-button-icon-center", `freddy-plugins-button-icon--${v.size}`]),
1631
+ class: D(["freddy-plugins-button-icon freddy-plugins-button-icon-center", `freddy-plugins-button-icon--${v.size}`]),
1626
1632
  "aria-hidden": "true"
1627
1633
  }, null, 8, ["class"])) : (c(), f(O, { key: 2 }, [
1628
1634
  v.leftIcon ? (c(), E(K(s.value), {
1629
1635
  key: 0,
1630
- class: A(["freddy-plugins-button-icon freddy-plugins-button-icon-left", `freddy-plugins-button-icon--${v.size}`]),
1636
+ class: D(["freddy-plugins-button-icon freddy-plugins-button-icon-left", `freddy-plugins-button-icon--${v.size}`]),
1631
1637
  "aria-hidden": "true",
1632
1638
  onClick: j(g, ["stop"])
1633
1639
  }, null, 8, ["class"])) : S("", !0),
1634
1640
  v.label ? (c(), f("span", us, B(v.label), 1)) : S("", !0),
1635
1641
  v.rightIcon ? (c(), E(K(l.value), {
1636
1642
  key: 2,
1637
- class: A(["freddy-plugins-button-icon freddy-plugins-button-icon-right", `freddy-plugins-button-icon--${v.size}`]),
1643
+ class: D(["freddy-plugins-button-icon freddy-plugins-button-icon-right", `freddy-plugins-button-icon--${v.size}`]),
1638
1644
  "aria-hidden": "true",
1639
1645
  onClick: j(b, ["stop"])
1640
1646
  }, null, 8, ["class"])) : S("", !0)
@@ -1801,12 +1807,12 @@ const xt = [
1801
1807
  i.disabled || e("click", g, b);
1802
1808
  };
1803
1809
  return (g, b) => (c(), f("div", {
1804
- class: A(l.value),
1810
+ class: D(l.value),
1805
1811
  style: ne(g.style)
1806
1812
  }, [
1807
1813
  (c(!0), f(O, null, U(g.providers, (P) => (c(), f("button", {
1808
1814
  key: P,
1809
- class: A(d(P)),
1815
+ class: D(d(P)),
1810
1816
  disabled: g.disabled,
1811
1817
  "aria-label": g.iconOnly ? u(P) : void 0,
1812
1818
  role: "button",
@@ -1820,14 +1826,14 @@ const xt = [
1820
1826
  ], 10, hs))), 128))
1821
1827
  ], 6));
1822
1828
  }
1823
- }), nc = /* @__PURE__ */ H(ms, [["__scopeId", "data-v-22e5ee7c"]]), vs = ["innerHTML"], Ae = "nord", sc = /* @__PURE__ */ N({
1829
+ }), nc = /* @__PURE__ */ H(ms, [["__scopeId", "data-v-22e5ee7c"]]), vs = ["innerHTML"], De = "nord", sc = /* @__PURE__ */ N({
1824
1830
  __name: "CodeBlock",
1825
1831
  props: {
1826
1832
  code: {},
1827
1833
  language: {}
1828
1834
  },
1829
1835
  setup(y) {
1830
- const m = y, i = D("");
1836
+ const m = y, i = A("");
1831
1837
  let e = null, s = null;
1832
1838
  const l = async () => {
1833
1839
  try {
@@ -1865,11 +1871,11 @@ const xt = [
1865
1871
  }
1866
1872
  try {
1867
1873
  e || (e = await s({
1868
- themes: [Ae],
1874
+ themes: [De],
1869
1875
  langs: r
1870
1876
  })), i.value = e.codeToHtml(m.code, {
1871
1877
  lang: m.language,
1872
- theme: Ae
1878
+ theme: De
1873
1879
  });
1874
1880
  } catch {
1875
1881
  i.value = `<pre><code>${m.code.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;")}</code></pre>`;
@@ -1906,7 +1912,7 @@ const xt = [
1906
1912
  i.disabled || e("update:isChecked", r.checked);
1907
1913
  }
1908
1914
  return (l, r) => (c(), f("label", {
1909
- class: A(["freddy-plugins-base-checkbox", {
1915
+ class: D(["freddy-plugins-base-checkbox", {
1910
1916
  "freddy-plugins-checked": l.isChecked && !l.blueCheckbox,
1911
1917
  "freddy-plugins-checked-blue": l.isChecked && l.blueCheckbox,
1912
1918
  "freddy-plugins-not-checked": !l.isChecked,
@@ -2245,10 +2251,10 @@ const ue = new _s(
2245
2251
  }, Ps = {
2246
2252
  class: "freddy-plugins-action-btn",
2247
2253
  title: "Edit"
2248
- }, Ds = {
2254
+ }, As = {
2249
2255
  key: 1,
2250
2256
  class: "freddy-plugins-assistant-message-container"
2251
- }, As = { class: "freddy-plugins-assistant-content" }, Bs = { class: "freddy-plugins-assistant-text" }, Fs = {
2257
+ }, Ds = { class: "freddy-plugins-assistant-content" }, Bs = { class: "freddy-plugins-assistant-text" }, Fs = {
2252
2258
  key: 0,
2253
2259
  class: "freddy-plugins-changes-card"
2254
2260
  }, Ms = { class: "freddy-plugins-changes-header" }, Ls = { class: "freddy-plugins-header-left" }, Vs = { class: "freddy-plugins-change-title" }, Es = {
@@ -2275,7 +2281,7 @@ const ue = new _s(
2275
2281
  }, qs = {
2276
2282
  key: 0,
2277
2283
  class: "freddy-plugins-processing-indicator"
2278
- }, Js = { class: "freddy-plugins-chat-input-area" }, Qs = { class: "freddy-plugins-folder-btn" }, Ys = ["placeholder", "onKeydown"], Xs = ["disabled"], ei = /* @__PURE__ */ N({
2284
+ }, Js = { class: "freddy-plugins-chat-input-area" }, Ys = { class: "freddy-plugins-folder-btn" }, Qs = ["placeholder", "onKeydown"], Xs = ["disabled"], ei = /* @__PURE__ */ N({
2279
2285
  __name: "SimpleChatInterface",
2280
2286
  props: {
2281
2287
  placeholder: {},
@@ -2286,7 +2292,7 @@ const ue = new _s(
2286
2292
  },
2287
2293
  emits: ["send", "acceptChanges", "denyChanges", "textReplacement", "textCompletion"],
2288
2294
  setup(y, { expose: m, emit: i }) {
2289
- const e = y, s = i, l = D(""), r = D(null), u = D(null), d = D(e.messages || []), o = D(!1);
2295
+ const e = y, s = i, l = A(""), r = A(null), u = A(null), d = A(e.messages || []), o = A(!1);
2290
2296
  e.openaiApiKey && ue.setApiKey(e.openaiApiKey), G(
2291
2297
  () => e.messages,
2292
2298
  (t) => {
@@ -2437,7 +2443,7 @@ const ue = new _s(
2437
2443
  a("div", ws, [
2438
2444
  (c(!0), f(O, null, U(d.value, (w) => (c(), f("div", {
2439
2445
  key: w.id,
2440
- class: A(["freddy-plugins-message", w.sender])
2446
+ class: D(["freddy-plugins-message", w.sender])
2441
2447
  }, [
2442
2448
  w.sender === "user" ? (c(), f("div", Ss, [
2443
2449
  a("div", Ts, B(w.content), 1),
@@ -2449,8 +2455,8 @@ const ue = new _s(
2449
2455
  L(F(pe), { class: "freddy-plugins-action-icon" })
2450
2456
  ])
2451
2457
  ])
2452
- ])) : (c(), f("div", Ds, [
2453
- a("div", As, [
2458
+ ])) : (c(), f("div", As, [
2459
+ a("div", Ds, [
2454
2460
  a("p", Bs, B(w.content), 1),
2455
2461
  w.changes ? (c(), f("div", Fs, [
2456
2462
  a("div", Ms, [
@@ -2511,10 +2517,10 @@ const ue = new _s(
2511
2517
  ])])) : S("", !0)
2512
2518
  ], 512),
2513
2519
  a("div", Js, [
2514
- a("button", Qs, [
2520
+ a("button", Ys, [
2515
2521
  L(F(vt), { class: "freddy-plugins-folder-icon" })
2516
2522
  ]),
2517
- Q(a("textarea", {
2523
+ Y(a("textarea", {
2518
2524
  ref_key: "inputRef",
2519
2525
  ref: u,
2520
2526
  "onUpdate:modelValue": h[0] || (h[0] = (w) => l.value = w),
@@ -2526,8 +2532,8 @@ const ue = new _s(
2526
2532
  z(j(v, ["shift", "exact"]), ["enter"])
2527
2533
  ],
2528
2534
  onInput: T
2529
- }, null, 40, Ys), [
2530
- [Y, l.value]
2535
+ }, null, 40, Qs), [
2536
+ [Q, l.value]
2531
2537
  ]),
2532
2538
  a("button", {
2533
2539
  class: "freddy-plugins-send-button",
@@ -2576,7 +2582,7 @@ const ue = new _s(
2576
2582
  },
2577
2583
  emits: ["close", "save", "cancel", "askAI", "toggleAI"],
2578
2584
  setup(y, { emit: m }) {
2579
- const i = y, e = m, s = D(i.initialContent), l = D(!1), r = D([]), u = D(null);
2585
+ const i = y, e = m, s = A(i.initialContent), l = A(!1), r = A([]), u = A(null);
2580
2586
  G(
2581
2587
  () => i.initialContent,
2582
2588
  (I) => {
@@ -2608,7 +2614,7 @@ const ue = new _s(
2608
2614
  onClick: j(d, ["self"])
2609
2615
  }, [
2610
2616
  a("div", {
2611
- class: A(["freddy-plugins-edit-excerpt-modal-container", { "ai-active": l.value }])
2617
+ class: D(["freddy-plugins-edit-excerpt-modal-container", { "ai-active": l.value }])
2612
2618
  }, [
2613
2619
  a("div", ti, [
2614
2620
  a("div", oi, [
@@ -2646,13 +2652,13 @@ const ue = new _s(
2646
2652
  $[1] || ($[1] = a("div", { class: "freddy-plugins-edit-excerpt-modal-header-spacing" }, null, -1))
2647
2653
  ]),
2648
2654
  a("div", ci, [
2649
- Q(a("textarea", {
2655
+ Y(a("textarea", {
2650
2656
  "onUpdate:modelValue": $[0] || ($[0] = (p) => s.value = p),
2651
2657
  class: "freddy-plugins-edit-excerpt-modal-textarea",
2652
2658
  placeholder: "The text thats needed",
2653
2659
  rows: "12"
2654
2660
  }, null, 512), [
2655
- [Y, s.value]
2661
+ [Q, s.value]
2656
2662
  ])
2657
2663
  ]),
2658
2664
  a("div", ri, [
@@ -2743,9 +2749,9 @@ const ue = new _s(
2743
2749
  },
2744
2750
  emits: ["update:modelValue", "input", "focus", "blur", "ask-ai", "expand", "remove-tag", "tooltip-click", "add-tag", "tags-click"],
2745
2751
  setup(y, { expose: m, emit: i }) {
2746
- const e = y, s = i, l = D(null), r = D(
2752
+ const e = y, s = i, l = A(null), r = A(
2747
2753
  null
2748
- ), u = D(e.modelValue), d = D(""), o = D(!1), g = D("expand"), b = D(!1), P = M(() => e.showTags && e.tags.length > 0 ? "" : e.placeholder);
2754
+ ), u = A(e.modelValue), d = A(""), o = A(!1), g = A("expand"), b = A(!1), P = M(() => e.showTags && e.tags.length > 0 ? "" : e.placeholder);
2749
2755
  G(
2750
2756
  () => e.modelValue,
2751
2757
  (x) => {
@@ -2798,7 +2804,7 @@ const ue = new _s(
2798
2804
  a("div", vi, [
2799
2805
  a("div", yi, [
2800
2806
  a("label", {
2801
- class: A(["freddy-plugins-textarea-label", {
2807
+ class: D(["freddy-plugins-textarea-label", {
2802
2808
  "freddy-plugins-textarea-label--underlined": x.showUnderlines
2803
2809
  }])
2804
2810
  }, B(x.dynamicTitle || x.label), 3),
@@ -2837,12 +2843,12 @@ const ue = new _s(
2837
2843
  ], 32)) : S("", !0)
2838
2844
  ]),
2839
2845
  a("div", Ii, [
2840
- x.diffMode ? S("", !0) : Q((c(), f("textarea", {
2846
+ x.diffMode ? S("", !0) : Y((c(), f("textarea", {
2841
2847
  key: 0,
2842
2848
  ref_key: "textareaRef",
2843
2849
  ref: l,
2844
2850
  "onUpdate:modelValue": de[0] || (de[0] = (ae) => u.value = ae),
2845
- class: A(["freddy-plugins-textarea-input", {
2851
+ class: D(["freddy-plugins-textarea-input", {
2846
2852
  "freddy-plugins-textarea-input--error": x.hasError,
2847
2853
  "freddy-plugins-textarea-input--disabled": x.disabled,
2848
2854
  "freddy-plugins-textarea-input--focused": b.value,
@@ -2858,7 +2864,7 @@ const ue = new _s(
2858
2864
  onKeydown: k,
2859
2865
  onClick: C
2860
2866
  }, null, 42, bi)), [
2861
- [Y, u.value]
2867
+ [Q, u.value]
2862
2868
  ]),
2863
2869
  x.diffMode ? (c(), f("div", ki, [
2864
2870
  a("div", _i, [
@@ -2874,7 +2880,7 @@ const ue = new _s(
2874
2880
  }, [
2875
2881
  a("div", $i, [
2876
2882
  a("span", {
2877
- class: A(["freddy-plugins-textarea-tag-text", {
2883
+ class: D(["freddy-plugins-textarea-tag-text", {
2878
2884
  "freddy-plugins-textarea-tag-text--underlined": x.showUnderlines
2879
2885
  }])
2880
2886
  }, B(ae), 3)
@@ -2893,7 +2899,7 @@ const ue = new _s(
2893
2899
  ]),
2894
2900
  x.showAddTagsPlaceholder ? (c(), f("span", {
2895
2901
  key: 0,
2896
- class: A(["freddy-plugins-textarea-add-tags", {
2902
+ class: D(["freddy-plugins-textarea-add-tags", {
2897
2903
  "freddy-plugins-textarea-add-tags--underlined": x.showUnderlines
2898
2904
  }])
2899
2905
  }, B(x.addTagsPlaceholder), 3)) : S("", !0)
@@ -2912,13 +2918,13 @@ const ue = new _s(
2912
2918
  ]),
2913
2919
  x.showHint && x.hintText && !x.hasError ? (c(), f("p", {
2914
2920
  key: 0,
2915
- class: A(["freddy-plugins-textarea-hint-text", {
2921
+ class: D(["freddy-plugins-textarea-hint-text", {
2916
2922
  "freddy-plugins-textarea-hint-text--underlined": x.showUnderlines
2917
2923
  }])
2918
2924
  }, B(x.hintText), 3)) : S("", !0),
2919
2925
  x.hasError && x.errorMessage ? (c(), f("p", {
2920
2926
  key: 1,
2921
- class: A(["freddy-plugins-textarea-error-text", {
2927
+ class: D(["freddy-plugins-textarea-error-text", {
2922
2928
  "freddy-plugins-textarea-error-text--underlined": x.showUnderlines
2923
2929
  }])
2924
2930
  }, B(x.errorMessage), 3)) : S("", !0),
@@ -2955,7 +2961,7 @@ const ue = new _s(
2955
2961
  }, null, 8, ["is-visible", "title", "description", "initial-content", "openai-model"])) : S("", !0)
2956
2962
  ]));
2957
2963
  }
2958
- }), Di = /* @__PURE__ */ H(Pi, [["__scopeId", "data-v-c6385f70"]]), Ai = /* @__PURE__ */ N({
2964
+ }), Ai = /* @__PURE__ */ H(Pi, [["__scopeId", "data-v-c6385f70"]]), Di = /* @__PURE__ */ N({
2959
2965
  __name: "Descriptions",
2960
2966
  props: {
2961
2967
  modelValue: { default: "" },
@@ -2988,7 +2994,7 @@ const ue = new _s(
2988
2994
  },
2989
2995
  emits: ["update:modelValue", "input", "focus", "blur", "ask-ai", "expand", "remove-tag", "tooltip-click", "add-tag", "tags-click"],
2990
2996
  setup(y, { expose: m, emit: i }) {
2991
- const e = y, s = i, l = D(e.modelValue), r = D([...e.tags]);
2997
+ const e = y, s = i, l = A(e.modelValue), r = A([...e.tags]);
2992
2998
  G(
2993
2999
  () => e.modelValue,
2994
3000
  (h) => {
@@ -3027,7 +3033,7 @@ const ue = new _s(
3027
3033
  return m({
3028
3034
  focus: () => {
3029
3035
  }
3030
- }), (h, w) => (c(), E(Di, {
3036
+ }), (h, w) => (c(), E(Ai, {
3031
3037
  modelValue: l.value,
3032
3038
  "onUpdate:modelValue": [
3033
3039
  w[0] || (w[0] = (_) => l.value = _),
@@ -3071,7 +3077,7 @@ const ue = new _s(
3071
3077
  onTagsClick: p
3072
3078
  }, null, 8, ["modelValue", "label", "placeholder", "disabled", "readonly", "required", "show-tooltip", "tooltip-text", "show-ai-button", "show-tags", "tags", "show-add-tags-placeholder", "add-tags-placeholder", "hint-text", "has-error", "error-message", "modal-title", "modal-description", "openai-api-key", "openai-model", "openai-organization", "show-underlines", "dynamic-title", "show-hint", "diff-mode", "old-text", "new-text", "tags-only"]));
3073
3079
  }
3074
- }), ac = /* @__PURE__ */ H(Ai, [["__scopeId", "data-v-19ded011"]]), Bi = { class: "freddy-plugins-diff-container" }, Fi = ["innerHTML"], Mi = ["placeholder"], Li = /* @__PURE__ */ N({
3080
+ }), ac = /* @__PURE__ */ H(Di, [["__scopeId", "data-v-19ded011"]]), Bi = { class: "freddy-plugins-diff-container" }, Fi = ["innerHTML"], Mi = ["placeholder"], Li = /* @__PURE__ */ N({
3075
3081
  __name: "DiffTextarea",
3076
3082
  props: {
3077
3083
  modelValue: {},
@@ -3082,7 +3088,7 @@ const ue = new _s(
3082
3088
  },
3083
3089
  emits: ["update:modelValue"],
3084
3090
  setup(y, { expose: m, emit: i }) {
3085
- const e = y, s = i, l = D(null), r = D(e.modelValue);
3091
+ const e = y, s = i, l = A(null), r = A(e.modelValue);
3086
3092
  G(
3087
3093
  () => e.modelValue,
3088
3094
  (o) => {
@@ -3114,7 +3120,7 @@ const ue = new _s(
3114
3120
  key: 0,
3115
3121
  class: "freddy-plugins-diff-preview",
3116
3122
  innerHTML: d.value
3117
- }, null, 8, Fi)) : Q((c(), f("textarea", {
3123
+ }, null, 8, Fi)) : Y((c(), f("textarea", {
3118
3124
  key: 1,
3119
3125
  ref_key: "textareaRef",
3120
3126
  ref: l,
@@ -3123,7 +3129,7 @@ const ue = new _s(
3123
3129
  placeholder: o.placeholder,
3124
3130
  onInput: u
3125
3131
  }, null, 40, Mi)), [
3126
- [Y, r.value]
3132
+ [Q, r.value]
3127
3133
  ])
3128
3134
  ]));
3129
3135
  }
@@ -3142,7 +3148,7 @@ const ue = new _s(
3142
3148
  l.stopPropagation(), i.disabled || e("update:modelValue", !i.modelValue);
3143
3149
  }
3144
3150
  return (l, r) => (c(), f("button", {
3145
- class: A(["freddy-plugins-switch", {
3151
+ class: D(["freddy-plugins-switch", {
3146
3152
  "freddy-plugins-switch--on": l.modelValue,
3147
3153
  "freddy-plugins-switch--disabled": l.disabled,
3148
3154
  [`freddy-plugins-switch--${l.size}`]: !0
@@ -3194,7 +3200,7 @@ const ue = new _s(
3194
3200
  },
3195
3201
  emits: ["select", "toggle"],
3196
3202
  setup(y, { emit: m }) {
3197
- const i = y, e = m, s = D(!1), l = D(""), r = D(null), u = Ze([...i.options]);
3203
+ const i = y, e = m, s = A(!1), l = A(""), r = A(null), u = Ze([...i.options]);
3198
3204
  G(
3199
3205
  () => i.options,
3200
3206
  (I) => {
@@ -3262,25 +3268,25 @@ const ue = new _s(
3262
3268
  }, 8, ["label", "iconOnly", "rightIcon", "leftIcon", "size", "aria-expanded"]),
3263
3269
  s.value ? (c(), f("div", {
3264
3270
  key: 0,
3265
- class: A(["freddy-plugins-dropdown-menu", {
3271
+ class: D(["freddy-plugins-dropdown-menu", {
3266
3272
  "freddy-plugins-dropdown-menu--up": I.openUp,
3267
3273
  "freddy-plugins-dropdown-menu--down": !I.openUp
3268
3274
  }])
3269
3275
  }, [
3270
3276
  I.searchable ? (c(), f("div", Ni, [
3271
- Q(a("input", {
3277
+ Y(a("input", {
3272
3278
  "onUpdate:modelValue": $[0] || ($[0] = (p) => l.value = p),
3273
3279
  type: "text",
3274
3280
  class: "freddy-plugins-dropdown-search-input",
3275
3281
  placeholder: I.searchPlaceholder
3276
3282
  }, null, 8, Ri), [
3277
- [Y, l.value]
3283
+ [Q, l.value]
3278
3284
  ])
3279
3285
  ])) : S("", !0),
3280
3286
  a("ul", Oi, [
3281
3287
  (c(!0), f(O, null, U(V.value, (p) => (c(), f("li", {
3282
3288
  key: p.value,
3283
- class: A(["freddy-plugins-dropdown-option", {
3289
+ class: D(["freddy-plugins-dropdown-option", {
3284
3290
  "freddy-plugins-dropdown-option--toggle": p.type === "toggle"
3285
3291
  }]),
3286
3292
  onClick: (t) => v(p)
@@ -3317,7 +3323,7 @@ const ue = new _s(
3317
3323
  ], 2)) : S("", !0)
3318
3324
  ], 32));
3319
3325
  }
3320
- }), Ki = { class: "verification-container" }, Gi = { class: "verification-header" }, Zi = { class: "verification-subtitle" }, Wi = { class: "code-input-container" }, qi = { class: "code-inputs" }, Ji = ["onUpdate:modelValue", "onInput", "onKeydown", "disabled"], Qi = { class: "verification-actions" }, Yi = {
3326
+ }), Ki = { class: "verification-container" }, Gi = { class: "verification-header" }, Zi = { class: "verification-subtitle" }, Wi = { class: "code-input-container" }, qi = { class: "code-inputs" }, Ji = ["onUpdate:modelValue", "onInput", "onKeydown", "disabled"], Yi = { class: "verification-actions" }, Qi = {
3321
3327
  key: 0,
3322
3328
  class: "error-message"
3323
3329
  }, Xi = { class: "verification-footer" }, ea = { class: "resend-text" }, ta = ["disabled"], rc = /* @__PURE__ */ N({
@@ -3331,7 +3337,7 @@ const ue = new _s(
3331
3337
  },
3332
3338
  emits: ["verify", "resend"],
3333
3339
  setup(y, { emit: m }) {
3334
- const i = y, { brand: e, loading: s, error: l, resendCooldown: r } = i, u = m, d = D(["", "", "", ""]), o = D([]), g = M(() => d.value.every((C) => C !== "")), b = M(() => d.value.join("")), P = (C, I) => {
3340
+ const i = y, { brand: e, loading: s, error: l, resendCooldown: r } = i, u = m, d = A(["", "", "", ""]), o = A([]), g = M(() => d.value.every((C) => C !== "")), b = M(() => d.value.join("")), P = (C, I) => {
3335
3341
  const $ = I.target, p = $.value;
3336
3342
  if (!/^\d*$/.test(p)) {
3337
3343
  $.value = "";
@@ -3369,7 +3375,7 @@ const ue = new _s(
3369
3375
  (C = o.value[0]) == null || C.focus();
3370
3376
  });
3371
3377
  }), (C, I) => (c(), f("div", {
3372
- class: A(["email-verification", `email-verification--${F(e)}`])
3378
+ class: D(["email-verification", `email-verification--${F(e)}`])
3373
3379
  }, [
3374
3380
  a("div", Ki, [
3375
3381
  a("div", Gi, [
@@ -3385,25 +3391,25 @@ const ue = new _s(
3385
3391
  }, [
3386
3392
  a("div", Wi, [
3387
3393
  a("div", qi, [
3388
- (c(), f(O, null, U(4, ($, p) => Q(a("input", {
3394
+ (c(), f(O, null, U(4, ($, p) => Y(a("input", {
3389
3395
  key: p,
3390
3396
  ref_for: !0,
3391
3397
  ref: (t) => o.value[p] = t,
3392
3398
  "onUpdate:modelValue": (t) => d.value[p] = t,
3393
3399
  type: "text",
3394
3400
  maxlength: "1",
3395
- class: A(["code-input", `code-input--${F(e)}`]),
3401
+ class: D(["code-input", `code-input--${F(e)}`]),
3396
3402
  onInput: (t) => P(p, t),
3397
3403
  onKeydown: (t) => V(p, t),
3398
3404
  onPaste: v,
3399
3405
  disabled: F(s),
3400
3406
  autocomplete: "one-time-code"
3401
3407
  }, null, 42, Ji), [
3402
- [Y, d.value[p]]
3408
+ [Q, d.value[p]]
3403
3409
  ])), 64))
3404
3410
  ])
3405
3411
  ]),
3406
- a("div", Qi, [
3412
+ a("div", Yi, [
3407
3413
  L(ze, {
3408
3414
  type: "submit",
3409
3415
  label: F(s) ? "Verifying..." : "Verify Code",
@@ -3411,10 +3417,10 @@ const ue = new _s(
3411
3417
  size: "lg",
3412
3418
  loading: F(s),
3413
3419
  disabled: !g.value || F(s),
3414
- class: A(`verify-button verify-button--${F(e)}`)
3420
+ class: D(`verify-button verify-button--${F(e)}`)
3415
3421
  }, null, 8, ["label", "loading", "disabled", "class"])
3416
3422
  ]),
3417
- F(l) ? (c(), f("div", Yi, B(F(l)), 1)) : S("", !0),
3423
+ F(l) ? (c(), f("div", Qi, B(F(l)), 1)) : S("", !0),
3418
3424
  a("div", Xi, [
3419
3425
  a("p", ea, [
3420
3426
  I[2] || (I[2] = J(" Didn't receive the code? ", -1)),
@@ -3468,20 +3474,20 @@ const ue = new _s(
3468
3474
  d.label ? (c(), f("label", {
3469
3475
  key: 0,
3470
3476
  for: l.value,
3471
- class: A(["freddy-plugins-input-field-label", `freddy-plugins-input-field-label--${d.colorStyle}`])
3477
+ class: D(["freddy-plugins-input-field-label", `freddy-plugins-input-field-label--${d.colorStyle}`])
3472
3478
  }, [
3473
3479
  J(B(d.label) + " ", 1),
3474
3480
  d.required ? (c(), f("span", sa, "*")) : S("", !0)
3475
3481
  ], 10, na)) : S("", !0),
3476
3482
  a("div", {
3477
- class: A(["freddy-plugins-input-field-container", r.value]),
3483
+ class: D(["freddy-plugins-input-field-container", r.value]),
3478
3484
  onClick: u
3479
3485
  }, [
3480
3486
  W(d.$slots, "default", {}, void 0, !0)
3481
3487
  ], 2),
3482
3488
  d.hintText ? (c(), f("p", {
3483
3489
  key: 1,
3484
- class: A(["freddy-plugins-input-hint-text", `freddy-plugins-input-hint-text--${d.colorStyle}`])
3490
+ class: D(["freddy-plugins-input-hint-text", `freddy-plugins-input-hint-text--${d.colorStyle}`])
3485
3491
  }, B(d.hintText), 3)) : S("", !0)
3486
3492
  ]));
3487
3493
  }
@@ -3538,7 +3544,7 @@ const ue = new _s(
3538
3544
  },
3539
3545
  emits: ["update:cardNumber", "card-type-detected", "update:modelValue", "input", "focus", "blur", "trailing-icon-click", "keydown", "leading-icon-click", "trailing-button-click", "update:countryCode", "update:phoneNumber", "country-change", "update:currency", "update:amount", "currency-change", "update:protocol", "update:url", "protocol-change", "update:tags", "tag-added", "tag-removed", "max-tags-reached", "copy-success", "copy-error"],
3540
3546
  setup(y, { expose: m, emit: i }) {
3541
- const e = y, s = i, l = D(null), r = D(null), u = D(""), d = D(""), o = D("unknown"), g = M(() => ({
3547
+ const e = y, s = i, l = A(null), r = A(null), u = A(""), d = A(""), o = A("unknown"), g = M(() => ({
3542
3548
  size: e.size,
3543
3549
  colorStyle: e.colorStyle,
3544
3550
  state: e.state,
@@ -3548,7 +3554,7 @@ const ue = new _s(
3548
3554
  hintText: e.hintText,
3549
3555
  disabled: e.disabled
3550
3556
  })), b = (_) => _ ? typeof _ == "object" ? _ : typeof _ == "string" ? R(
3551
- () => be(/* @__PURE__ */ Object.assign({ "../../icons/IconAddFileSystem.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c2), "../../icons/IconAddPeople.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c3), "../../icons/IconAitronos.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c4), "../../icons/IconApple.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c5), "../../icons/IconApplePay.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c6), "../../icons/IconArrowDown.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c7), "../../icons/IconArrowLeft.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c8), "../../icons/IconArrowUp.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c9), "../../icons/IconBadgeCheck.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ca), "../../icons/IconBroom.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cb), "../../icons/IconBuildings.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cc), "../../icons/IconCalendarWithTickInside.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cd), "../../icons/IconCallNotAllowed.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ce), "../../icons/IconCardPay.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cf), "../../icons/IconCaution.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cg), "../../icons/IconChangeLog.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ch), "../../icons/IconCheckCircleFill.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ci), "../../icons/IconCheckInCircle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cj), "../../icons/IconCheckRounded.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ck), "../../icons/IconChevronDown.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cl), "../../icons/IconChevronLeft.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cm), "../../icons/IconChevronRight.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cn), "../../icons/IconChevronUp.vue": () => import("./icons-DpyIf23e.js").then((n) => n.co), "../../icons/IconCircledCheck.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cp), "../../icons/IconClock.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cq), "../../icons/IconClosedEnvelope.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cr), "../../icons/IconCloudUpload.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cs), "../../icons/IconConnectorConfluence.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ct), "../../icons/IconConnectorFigma.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cu), "../../icons/IconConnectorFreshDesk.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cv), "../../icons/IconConnectorGitHub.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cw), "../../icons/IconConnectorJira.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cx), "../../icons/IconConnectorLinear.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cy), "../../icons/IconConnectorNotion.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cz), "../../icons/IconConnectorSlack.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cA), "../../icons/IconConnectorZapier.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cB), "../../icons/IconCopy.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cC), "../../icons/IconCross.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cD), "../../icons/IconCrossCircleFill.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cE), "../../icons/IconCrossInCircle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cF), "../../icons/IconCurrentTick.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cG), "../../icons/IconDataUpload.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cH), "../../icons/IconDelete.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cI), "../../icons/IconDeleteFillRed.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cJ), "../../icons/IconDialingPhone.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cK), "../../icons/IconDisabledAlert.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cL), "../../icons/IconDocumentation.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cM), "../../icons/IconDownload.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cN), "../../icons/IconDribbble.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cO), "../../icons/IconDropdownArrow.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cP), "../../icons/IconEdit.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cQ), "../../icons/IconEditLinePath.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cR), "../../icons/IconEllipse.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cS), "../../icons/IconExcelThumbnail.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cT), "../../icons/IconEye.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cU), "../../icons/IconFacebook.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cV), "../../icons/IconFigma.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cW), "../../icons/IconFile.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cX), "../../icons/IconFileSystem.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cY), "../../icons/IconFileUpload.vue": () => import("./icons-DpyIf23e.js").then((n) => n.cZ), "../../icons/IconFilter.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c_), "../../icons/IconFolder.vue": () => import("./icons-DpyIf23e.js").then((n) => n.c$), "../../icons/IconFreddyHub.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d0), "../../icons/IconFreddyHubLogo.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d1), "../../icons/IconFreddyHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d2), "../../icons/IconFreddyHubTitle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d3), "../../icons/IconFreddySmall.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d4), "../../icons/IconGlobExpand.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d5), "../../icons/IconGlobe.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d6), "../../icons/IconGoogle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d7), "../../icons/IconHollowCircle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d8), "../../icons/IconHome.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d9), "../../icons/IconInfoRounded.vue": () => import("./icons-DpyIf23e.js").then((n) => n.da), "../../icons/IconInvalidInvoice.vue": () => import("./icons-DpyIf23e.js").then((n) => n.db), "../../icons/IconInvoice.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dc), "../../icons/IconInvoiceSwitch.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dd), "../../icons/IconLapTableBottom.vue": () => import("./icons-DpyIf23e.js").then((n) => n.de), "../../icons/IconLense.vue": () => import("./icons-DpyIf23e.js").then((n) => n.df), "../../icons/IconLightCross.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dg), "../../icons/IconLink04.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dh), "../../icons/IconLoadingError.vue": () => import("./icons-DpyIf23e.js").then((n) => n.di), "../../icons/IconLoadingOrg.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dj), "../../icons/IconLocationWithCircleIn.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dk), "../../icons/IconLock.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dl), "../../icons/IconMarketPlace.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dm), "../../icons/IconMaximize.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dn), "../../icons/IconMicrophone.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dp), "../../icons/IconMutedMicrophone.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dq), "../../icons/IconNewNotification.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dr), "../../icons/IconNewTab.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ds), "../../icons/IconNotification.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dt), "../../icons/IconOpenBook.vue": () => import("./icons-DpyIf23e.js").then((n) => n.du), "../../icons/IconPaperAirPlane.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dv), "../../icons/IconPauseCircle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dw), "../../icons/IconPdfThumbnail.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dx), "../../icons/IconPenEdit.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dy), "../../icons/IconPencil.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dz), "../../icons/IconPeopleHub.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dA), "../../icons/IconPersonCircle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dB), "../../icons/IconPits.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dC), "../../icons/IconPlay.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dD), "../../icons/IconPlus.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dE), "../../icons/IconPolygonDown.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dF), "../../icons/IconPresentation.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dG), "../../icons/IconProgressBase.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dH), "../../icons/IconProgressComplete.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dI), "../../icons/IconProgressGoing.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dJ), "../../icons/IconPurpose.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dK), "../../icons/IconPurseCircleFill.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dL), "../../icons/IconQuestion.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dM), "../../icons/IconRadio.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dN), "../../icons/IconRadioFill.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dO), "../../icons/IconRefresh.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dP), "../../icons/IconRevertedTriangle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dQ), "../../icons/IconRobotScreen.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dR), "../../icons/IconRoundTick.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dS), "../../icons/IconSearch.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dT), "../../icons/IconSearchOptimised.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dU), "../../icons/IconSectionHide.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dV), "../../icons/IconSend.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dW), "../../icons/IconSettings.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dX), "../../icons/IconSettingsBold.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dY), "../../icons/IconSize.vue": () => import("./icons-DpyIf23e.js").then((n) => n.dZ), "../../icons/IconSliderKnobs.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d_), "../../icons/IconSortIdle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.d$), "../../icons/IconSparkle.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e0), "../../icons/IconSpotlio.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e1), "../../icons/IconStar.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e2), "../../icons/IconStatistics.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e3), "../../icons/IconStopChat.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e4), "../../icons/IconStreamLineHub.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e5), "../../icons/IconStreamLineHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e6), "../../icons/IconSun.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e7), "../../icons/IconSwap.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e8), "../../icons/IconText.vue": () => import("./icons-DpyIf23e.js").then((n) => n.e9), "../../icons/IconTextThumbnail.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ea), "../../icons/IconThinDocument.vue": () => import("./icons-DpyIf23e.js").then((n) => n.eb), "../../icons/IconThinFile.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ec), "../../icons/IconThumbsDown.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ed), "../../icons/IconTick.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ee), "../../icons/IconUser.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ef), "../../icons/IconVerticalDots.vue": () => import("./icons-DpyIf23e.js").then((n) => n.eg), "../../icons/IconVideoCamera.vue": () => import("./icons-DpyIf23e.js").then((n) => n.eh), "../../icons/IconWarningOctal.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ei), "../../icons/IconX.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ej), "../../icons/IconZip.vue": () => import("./icons-DpyIf23e.js").then((n) => n.ek) }), `../../icons/${_}.vue`, 4).catch(() => ({ template: "<div></div>" }))
3557
+ () => be(/* @__PURE__ */ Object.assign({ "../../icons/IconAddChatPop.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c4), "../../icons/IconAddFileSystem.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c5), "../../icons/IconAddPeople.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c6), "../../icons/IconAitronos.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c7), "../../icons/IconApple.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c8), "../../icons/IconApplePay.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c9), "../../icons/IconAppsGrid.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ca), "../../icons/IconArrowDown.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cb), "../../icons/IconArrowLeft.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cc), "../../icons/IconArrowUp.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cd), "../../icons/IconBadgeCheck.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ce), "../../icons/IconBroom.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cf), "../../icons/IconBuildings.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cg), "../../icons/IconCalendarWithTickInside.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ch), "../../icons/IconCallNotAllowed.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ci), "../../icons/IconCardPay.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cj), "../../icons/IconCaution.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ck), "../../icons/IconChangeLog.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cl), "../../icons/IconCheckCircleFill.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cm), "../../icons/IconCheckInCircle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cn), "../../icons/IconCheckRounded.vue": () => import("./icons-Be1wtE70.js").then((n) => n.co), "../../icons/IconChevronDown.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cp), "../../icons/IconChevronLeft.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cq), "../../icons/IconChevronRight.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cr), "../../icons/IconChevronUp.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cs), "../../icons/IconCircledCheck.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ct), "../../icons/IconClock.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cu), "../../icons/IconClosedEnvelope.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cv), "../../icons/IconCloudUpload.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cw), "../../icons/IconConnectorConfluence.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cx), "../../icons/IconConnectorFigma.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cy), "../../icons/IconConnectorFreshDesk.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cz), "../../icons/IconConnectorGitHub.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cA), "../../icons/IconConnectorJira.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cB), "../../icons/IconConnectorLinear.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cC), "../../icons/IconConnectorNotion.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cD), "../../icons/IconConnectorSlack.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cE), "../../icons/IconConnectorZapier.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cF), "../../icons/IconCopy.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cG), "../../icons/IconCross.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cH), "../../icons/IconCrossCircleFill.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cI), "../../icons/IconCrossInCircle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cJ), "../../icons/IconCurrentTick.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cK), "../../icons/IconDataUpload.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cL), "../../icons/IconDelete.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cM), "../../icons/IconDeleteFillRed.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cN), "../../icons/IconDialingPhone.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cO), "../../icons/IconDisabledAlert.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cP), "../../icons/IconDocumentation.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cQ), "../../icons/IconDownload.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cR), "../../icons/IconDribbble.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cS), "../../icons/IconDropdownArrow.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cT), "../../icons/IconEdit.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cU), "../../icons/IconEditLinePath.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cV), "../../icons/IconEllipse.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cW), "../../icons/IconExcelThumbnail.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cX), "../../icons/IconEye.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cY), "../../icons/IconFacebook.vue": () => import("./icons-Be1wtE70.js").then((n) => n.cZ), "../../icons/IconFigma.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c_), "../../icons/IconFile.vue": () => import("./icons-Be1wtE70.js").then((n) => n.c$), "../../icons/IconFileSystem.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d0), "../../icons/IconFileUpload.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d1), "../../icons/IconFilter.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d2), "../../icons/IconFolder.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d3), "../../icons/IconFreddyHub.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d4), "../../icons/IconFreddyHubLogo.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d5), "../../icons/IconFreddyHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d6), "../../icons/IconFreddyHubTitle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d7), "../../icons/IconFreddySmall.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d8), "../../icons/IconGlobExpand.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d9), "../../icons/IconGlobe.vue": () => import("./icons-Be1wtE70.js").then((n) => n.da), "../../icons/IconGoogle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.db), "../../icons/IconHollowCircle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dc), "../../icons/IconHome.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dd), "../../icons/IconInfoRounded.vue": () => import("./icons-Be1wtE70.js").then((n) => n.de), "../../icons/IconInvalidInvoice.vue": () => import("./icons-Be1wtE70.js").then((n) => n.df), "../../icons/IconInvoice.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dg), "../../icons/IconInvoiceSwitch.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dh), "../../icons/IconLapTableBottom.vue": () => import("./icons-Be1wtE70.js").then((n) => n.di), "../../icons/IconLense.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dj), "../../icons/IconLightCross.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dk), "../../icons/IconLink04.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dl), "../../icons/IconLoadingError.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dm), "../../icons/IconLoadingOrg.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dn), "../../icons/IconLocationWithCircleIn.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dp), "../../icons/IconLock.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dq), "../../icons/IconMarketPlace.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dr), "../../icons/IconMaximize.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ds), "../../icons/IconMicrophone.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dt), "../../icons/IconMutedMicrophone.vue": () => import("./icons-Be1wtE70.js").then((n) => n.du), "../../icons/IconNewNotification.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dv), "../../icons/IconNewTab.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dw), "../../icons/IconNotification.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dx), "../../icons/IconOpenBook.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dy), "../../icons/IconPaperAirPlane.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dz), "../../icons/IconPauseCircle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dA), "../../icons/IconPdfThumbnail.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dB), "../../icons/IconPenEdit.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dC), "../../icons/IconPencil.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dD), "../../icons/IconPeopleHub.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dE), "../../icons/IconPersonCircle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dF), "../../icons/IconPits.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dG), "../../icons/IconPlay.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dH), "../../icons/IconPlus.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dI), "../../icons/IconPolygonDown.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dJ), "../../icons/IconPresentation.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dK), "../../icons/IconProgressBase.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dL), "../../icons/IconProgressComplete.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dM), "../../icons/IconProgressGoing.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dN), "../../icons/IconPurpose.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dO), "../../icons/IconPurseCircleFill.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dP), "../../icons/IconQuestion.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dQ), "../../icons/IconRadio.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dR), "../../icons/IconRadioFill.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dS), "../../icons/IconRefresh.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dT), "../../icons/IconRevertedTriangle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dU), "../../icons/IconRobotScreen.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dV), "../../icons/IconRoundTick.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dW), "../../icons/IconSearch.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dX), "../../icons/IconSearchOptimised.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dY), "../../icons/IconSectionHide.vue": () => import("./icons-Be1wtE70.js").then((n) => n.dZ), "../../icons/IconSend.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d_), "../../icons/IconSettings.vue": () => import("./icons-Be1wtE70.js").then((n) => n.d$), "../../icons/IconSettingsBold.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e0), "../../icons/IconSize.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e1), "../../icons/IconSliderKnobs.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e2), "../../icons/IconSortIdle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e3), "../../icons/IconSparkle.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e4), "../../icons/IconSpotlio.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e5), "../../icons/IconStar.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e6), "../../icons/IconStatistics.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e7), "../../icons/IconStopChat.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e8), "../../icons/IconStreamLineHub.vue": () => import("./icons-Be1wtE70.js").then((n) => n.e9), "../../icons/IconStreamLineHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ea), "../../icons/IconSun.vue": () => import("./icons-Be1wtE70.js").then((n) => n.eb), "../../icons/IconSwap.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ec), "../../icons/IconText.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ed), "../../icons/IconTextThumbnail.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ee), "../../icons/IconThinDocument.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ef), "../../icons/IconThinFile.vue": () => import("./icons-Be1wtE70.js").then((n) => n.eg), "../../icons/IconThumbsDown.vue": () => import("./icons-Be1wtE70.js").then((n) => n.eh), "../../icons/IconTick.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ei), "../../icons/IconUser.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ej), "../../icons/IconVerticalDots.vue": () => import("./icons-Be1wtE70.js").then((n) => n.ek), "../../icons/IconVideoCamera.vue": () => import("./icons-Be1wtE70.js").then((n) => n.el), "../../icons/IconWarningOctal.vue": () => import("./icons-Be1wtE70.js").then((n) => n.em), "../../icons/IconX.vue": () => import("./icons-Be1wtE70.js").then((n) => n.en), "../../icons/IconZip.vue": () => import("./icons-Be1wtE70.js").then((n) => n.eo) }), `../../icons/${_}.vue`, 4).catch(() => ({ template: "<div></div>" }))
3552
3558
  ) : null : null, P = M(() => b(e.trailingIcon)), V = M(() => {
3553
3559
  switch (o.value) {
3554
3560
  case "amex":
@@ -3617,7 +3623,7 @@ const ue = new _s(
3617
3623
  return [
3618
3624
  _.showCardIcon && o.value !== "unknown" ? (c(), f("div", {
3619
3625
  key: 0,
3620
- class: A(["freddy-plugins-card-type-icon", `freddy-plugins-card-type-icon--${_.colorStyle}`])
3626
+ class: D(["freddy-plugins-card-type-icon", `freddy-plugins-card-type-icon--${_.colorStyle}`])
3621
3627
  }, [
3622
3628
  a("img", {
3623
3629
  src: C(o.value),
@@ -3625,7 +3631,7 @@ const ue = new _s(
3625
3631
  class: "freddy-plugins-card-icon-image"
3626
3632
  }, null, 8, aa)
3627
3633
  ], 2)) : S("", !0),
3628
- Q(a("input", {
3634
+ Y(a("input", {
3629
3635
  id: (q = r.value) == null ? void 0 : q.inputId,
3630
3636
  ref_key: "inputRef",
3631
3637
  ref: l,
@@ -3636,17 +3642,17 @@ const ue = new _s(
3636
3642
  disabled: _.disabled,
3637
3643
  readonly: _.readonly,
3638
3644
  maxlength: V.value,
3639
- class: A(["freddy-plugins-input-field freddy-plugins-card-input-field", v.value]),
3645
+ class: D(["freddy-plugins-input-field freddy-plugins-card-input-field", v.value]),
3640
3646
  onInput: I,
3641
3647
  onKeydown: $,
3642
3648
  onFocus: p,
3643
3649
  onBlur: t
3644
3650
  }, null, 42, la), [
3645
- [Y, d.value]
3651
+ [Q, d.value]
3646
3652
  ]),
3647
3653
  P.value ? (c(), E(K(P.value), {
3648
3654
  key: 1,
3649
- class: A(["freddy-plugins-input-trailing-icon", `freddy-plugins-input-trailing-icon--${_.colorStyle}`]),
3655
+ class: D(["freddy-plugins-input-trailing-icon", `freddy-plugins-input-trailing-icon--${_.colorStyle}`]),
3650
3656
  onClick: h
3651
3657
  }, null, 8, ["class"])) : S("", !0)
3652
3658
  ];
@@ -3675,7 +3681,7 @@ const ue = new _s(
3675
3681
  },
3676
3682
  emits: ["update:modelValue", "input", "focus", "blur", "keydown", "leading-icon-click", "trailing-icon-click"],
3677
3683
  setup(y, { expose: m, emit: i }) {
3678
- const e = y, s = i, l = D(null), r = D(null), u = D(e.modelValue || ""), d = M(() => ({
3684
+ const e = y, s = i, l = A(null), r = A(null), u = A(e.modelValue || ""), d = M(() => ({
3679
3685
  size: e.size,
3680
3686
  colorStyle: e.colorStyle,
3681
3687
  state: e.state,
@@ -3685,7 +3691,7 @@ const ue = new _s(
3685
3691
  hintText: e.hintText,
3686
3692
  disabled: e.disabled
3687
3693
  })), o = (p) => p ? typeof p == "object" ? p : typeof p == "string" ? R(
3688
- () => be(/* @__PURE__ */ Object.assign({ "../../icons/IconAddFileSystem.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c2), "../../icons/IconAddPeople.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c3), "../../icons/IconAitronos.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c4), "../../icons/IconApple.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c5), "../../icons/IconApplePay.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c6), "../../icons/IconArrowDown.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c7), "../../icons/IconArrowLeft.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c8), "../../icons/IconArrowUp.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c9), "../../icons/IconBadgeCheck.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ca), "../../icons/IconBroom.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cb), "../../icons/IconBuildings.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cc), "../../icons/IconCalendarWithTickInside.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cd), "../../icons/IconCallNotAllowed.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ce), "../../icons/IconCardPay.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cf), "../../icons/IconCaution.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cg), "../../icons/IconChangeLog.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ch), "../../icons/IconCheckCircleFill.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ci), "../../icons/IconCheckInCircle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cj), "../../icons/IconCheckRounded.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ck), "../../icons/IconChevronDown.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cl), "../../icons/IconChevronLeft.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cm), "../../icons/IconChevronRight.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cn), "../../icons/IconChevronUp.vue": () => import("./icons-DpyIf23e.js").then((t) => t.co), "../../icons/IconCircledCheck.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cp), "../../icons/IconClock.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cq), "../../icons/IconClosedEnvelope.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cr), "../../icons/IconCloudUpload.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cs), "../../icons/IconConnectorConfluence.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ct), "../../icons/IconConnectorFigma.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cu), "../../icons/IconConnectorFreshDesk.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cv), "../../icons/IconConnectorGitHub.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cw), "../../icons/IconConnectorJira.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cx), "../../icons/IconConnectorLinear.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cy), "../../icons/IconConnectorNotion.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cz), "../../icons/IconConnectorSlack.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cA), "../../icons/IconConnectorZapier.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cB), "../../icons/IconCopy.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cC), "../../icons/IconCross.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cD), "../../icons/IconCrossCircleFill.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cE), "../../icons/IconCrossInCircle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cF), "../../icons/IconCurrentTick.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cG), "../../icons/IconDataUpload.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cH), "../../icons/IconDelete.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cI), "../../icons/IconDeleteFillRed.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cJ), "../../icons/IconDialingPhone.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cK), "../../icons/IconDisabledAlert.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cL), "../../icons/IconDocumentation.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cM), "../../icons/IconDownload.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cN), "../../icons/IconDribbble.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cO), "../../icons/IconDropdownArrow.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cP), "../../icons/IconEdit.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cQ), "../../icons/IconEditLinePath.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cR), "../../icons/IconEllipse.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cS), "../../icons/IconExcelThumbnail.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cT), "../../icons/IconEye.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cU), "../../icons/IconFacebook.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cV), "../../icons/IconFigma.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cW), "../../icons/IconFile.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cX), "../../icons/IconFileSystem.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cY), "../../icons/IconFileUpload.vue": () => import("./icons-DpyIf23e.js").then((t) => t.cZ), "../../icons/IconFilter.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c_), "../../icons/IconFolder.vue": () => import("./icons-DpyIf23e.js").then((t) => t.c$), "../../icons/IconFreddyHub.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d0), "../../icons/IconFreddyHubLogo.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d1), "../../icons/IconFreddyHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d2), "../../icons/IconFreddyHubTitle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d3), "../../icons/IconFreddySmall.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d4), "../../icons/IconGlobExpand.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d5), "../../icons/IconGlobe.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d6), "../../icons/IconGoogle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d7), "../../icons/IconHollowCircle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d8), "../../icons/IconHome.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d9), "../../icons/IconInfoRounded.vue": () => import("./icons-DpyIf23e.js").then((t) => t.da), "../../icons/IconInvalidInvoice.vue": () => import("./icons-DpyIf23e.js").then((t) => t.db), "../../icons/IconInvoice.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dc), "../../icons/IconInvoiceSwitch.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dd), "../../icons/IconLapTableBottom.vue": () => import("./icons-DpyIf23e.js").then((t) => t.de), "../../icons/IconLense.vue": () => import("./icons-DpyIf23e.js").then((t) => t.df), "../../icons/IconLightCross.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dg), "../../icons/IconLink04.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dh), "../../icons/IconLoadingError.vue": () => import("./icons-DpyIf23e.js").then((t) => t.di), "../../icons/IconLoadingOrg.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dj), "../../icons/IconLocationWithCircleIn.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dk), "../../icons/IconLock.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dl), "../../icons/IconMarketPlace.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dm), "../../icons/IconMaximize.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dn), "../../icons/IconMicrophone.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dp), "../../icons/IconMutedMicrophone.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dq), "../../icons/IconNewNotification.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dr), "../../icons/IconNewTab.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ds), "../../icons/IconNotification.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dt), "../../icons/IconOpenBook.vue": () => import("./icons-DpyIf23e.js").then((t) => t.du), "../../icons/IconPaperAirPlane.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dv), "../../icons/IconPauseCircle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dw), "../../icons/IconPdfThumbnail.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dx), "../../icons/IconPenEdit.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dy), "../../icons/IconPencil.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dz), "../../icons/IconPeopleHub.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dA), "../../icons/IconPersonCircle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dB), "../../icons/IconPits.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dC), "../../icons/IconPlay.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dD), "../../icons/IconPlus.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dE), "../../icons/IconPolygonDown.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dF), "../../icons/IconPresentation.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dG), "../../icons/IconProgressBase.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dH), "../../icons/IconProgressComplete.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dI), "../../icons/IconProgressGoing.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dJ), "../../icons/IconPurpose.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dK), "../../icons/IconPurseCircleFill.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dL), "../../icons/IconQuestion.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dM), "../../icons/IconRadio.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dN), "../../icons/IconRadioFill.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dO), "../../icons/IconRefresh.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dP), "../../icons/IconRevertedTriangle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dQ), "../../icons/IconRobotScreen.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dR), "../../icons/IconRoundTick.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dS), "../../icons/IconSearch.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dT), "../../icons/IconSearchOptimised.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dU), "../../icons/IconSectionHide.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dV), "../../icons/IconSend.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dW), "../../icons/IconSettings.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dX), "../../icons/IconSettingsBold.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dY), "../../icons/IconSize.vue": () => import("./icons-DpyIf23e.js").then((t) => t.dZ), "../../icons/IconSliderKnobs.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d_), "../../icons/IconSortIdle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.d$), "../../icons/IconSparkle.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e0), "../../icons/IconSpotlio.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e1), "../../icons/IconStar.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e2), "../../icons/IconStatistics.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e3), "../../icons/IconStopChat.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e4), "../../icons/IconStreamLineHub.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e5), "../../icons/IconStreamLineHubNewLogo.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e6), "../../icons/IconSun.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e7), "../../icons/IconSwap.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e8), "../../icons/IconText.vue": () => import("./icons-DpyIf23e.js").then((t) => t.e9), "../../icons/IconTextThumbnail.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ea), "../../icons/IconThinDocument.vue": () => import("./icons-DpyIf23e.js").then((t) => t.eb), "../../icons/IconThinFile.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ec), "../../icons/IconThumbsDown.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ed), "../../icons/IconTick.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ee), "../../icons/IconUser.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ef), "../../icons/IconVerticalDots.vue": () => import("./icons-DpyIf23e.js").then((t) => t.eg), "../../icons/IconVideoCamera.vue": () => import("./icons-DpyIf23e.js").then((t) => t.eh), "../../icons/IconWarningOctal.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ei), "../../icons/IconX.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ej), "../../icons/IconZip.vue": () => import("./icons-DpyIf23e.js").then((t) => t.ek) }), `../../icons/${p}.vue`, 4).catch(() => ({ template: "<div></div>" }))
3694
+ () => be(/* @__PURE__ */ Object.assign({ "../../icons/IconAddChatPop.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c4), "../../icons/IconAddFileSystem.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c5), "../../icons/IconAddPeople.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c6), "../../icons/IconAitronos.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c7), "../../icons/IconApple.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c8), "../../icons/IconApplePay.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c9), "../../icons/IconAppsGrid.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ca), "../../icons/IconArrowDown.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cb), "../../icons/IconArrowLeft.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cc), "../../icons/IconArrowUp.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cd), "../../icons/IconBadgeCheck.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ce), "../../icons/IconBroom.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cf), "../../icons/IconBuildings.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cg), "../../icons/IconCalendarWithTickInside.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ch), "../../icons/IconCallNotAllowed.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ci), "../../icons/IconCardPay.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cj), "../../icons/IconCaution.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ck), "../../icons/IconChangeLog.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cl), "../../icons/IconCheckCircleFill.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cm), "../../icons/IconCheckInCircle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cn), "../../icons/IconCheckRounded.vue": () => import("./icons-Be1wtE70.js").then((t) => t.co), "../../icons/IconChevronDown.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cp), "../../icons/IconChevronLeft.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cq), "../../icons/IconChevronRight.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cr), "../../icons/IconChevronUp.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cs), "../../icons/IconCircledCheck.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ct), "../../icons/IconClock.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cu), "../../icons/IconClosedEnvelope.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cv), "../../icons/IconCloudUpload.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cw), "../../icons/IconConnectorConfluence.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cx), "../../icons/IconConnectorFigma.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cy), "../../icons/IconConnectorFreshDesk.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cz), "../../icons/IconConnectorGitHub.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cA), "../../icons/IconConnectorJira.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cB), "../../icons/IconConnectorLinear.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cC), "../../icons/IconConnectorNotion.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cD), "../../icons/IconConnectorSlack.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cE), "../../icons/IconConnectorZapier.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cF), "../../icons/IconCopy.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cG), "../../icons/IconCross.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cH), "../../icons/IconCrossCircleFill.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cI), "../../icons/IconCrossInCircle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cJ), "../../icons/IconCurrentTick.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cK), "../../icons/IconDataUpload.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cL), "../../icons/IconDelete.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cM), "../../icons/IconDeleteFillRed.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cN), "../../icons/IconDialingPhone.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cO), "../../icons/IconDisabledAlert.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cP), "../../icons/IconDocumentation.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cQ), "../../icons/IconDownload.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cR), "../../icons/IconDribbble.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cS), "../../icons/IconDropdownArrow.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cT), "../../icons/IconEdit.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cU), "../../icons/IconEditLinePath.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cV), "../../icons/IconEllipse.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cW), "../../icons/IconExcelThumbnail.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cX), "../../icons/IconEye.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cY), "../../icons/IconFacebook.vue": () => import("./icons-Be1wtE70.js").then((t) => t.cZ), "../../icons/IconFigma.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c_), "../../icons/IconFile.vue": () => import("./icons-Be1wtE70.js").then((t) => t.c$), "../../icons/IconFileSystem.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d0), "../../icons/IconFileUpload.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d1), "../../icons/IconFilter.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d2), "../../icons/IconFolder.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d3), "../../icons/IconFreddyHub.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d4), "../../icons/IconFreddyHubLogo.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d5), "../../icons/IconFreddyHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d6), "../../icons/IconFreddyHubTitle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d7), "../../icons/IconFreddySmall.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d8), "../../icons/IconGlobExpand.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d9), "../../icons/IconGlobe.vue": () => import("./icons-Be1wtE70.js").then((t) => t.da), "../../icons/IconGoogle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.db), "../../icons/IconHollowCircle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dc), "../../icons/IconHome.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dd), "../../icons/IconInfoRounded.vue": () => import("./icons-Be1wtE70.js").then((t) => t.de), "../../icons/IconInvalidInvoice.vue": () => import("./icons-Be1wtE70.js").then((t) => t.df), "../../icons/IconInvoice.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dg), "../../icons/IconInvoiceSwitch.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dh), "../../icons/IconLapTableBottom.vue": () => import("./icons-Be1wtE70.js").then((t) => t.di), "../../icons/IconLense.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dj), "../../icons/IconLightCross.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dk), "../../icons/IconLink04.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dl), "../../icons/IconLoadingError.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dm), "../../icons/IconLoadingOrg.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dn), "../../icons/IconLocationWithCircleIn.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dp), "../../icons/IconLock.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dq), "../../icons/IconMarketPlace.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dr), "../../icons/IconMaximize.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ds), "../../icons/IconMicrophone.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dt), "../../icons/IconMutedMicrophone.vue": () => import("./icons-Be1wtE70.js").then((t) => t.du), "../../icons/IconNewNotification.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dv), "../../icons/IconNewTab.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dw), "../../icons/IconNotification.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dx), "../../icons/IconOpenBook.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dy), "../../icons/IconPaperAirPlane.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dz), "../../icons/IconPauseCircle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dA), "../../icons/IconPdfThumbnail.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dB), "../../icons/IconPenEdit.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dC), "../../icons/IconPencil.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dD), "../../icons/IconPeopleHub.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dE), "../../icons/IconPersonCircle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dF), "../../icons/IconPits.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dG), "../../icons/IconPlay.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dH), "../../icons/IconPlus.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dI), "../../icons/IconPolygonDown.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dJ), "../../icons/IconPresentation.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dK), "../../icons/IconProgressBase.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dL), "../../icons/IconProgressComplete.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dM), "../../icons/IconProgressGoing.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dN), "../../icons/IconPurpose.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dO), "../../icons/IconPurseCircleFill.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dP), "../../icons/IconQuestion.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dQ), "../../icons/IconRadio.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dR), "../../icons/IconRadioFill.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dS), "../../icons/IconRefresh.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dT), "../../icons/IconRevertedTriangle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dU), "../../icons/IconRobotScreen.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dV), "../../icons/IconRoundTick.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dW), "../../icons/IconSearch.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dX), "../../icons/IconSearchOptimised.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dY), "../../icons/IconSectionHide.vue": () => import("./icons-Be1wtE70.js").then((t) => t.dZ), "../../icons/IconSend.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d_), "../../icons/IconSettings.vue": () => import("./icons-Be1wtE70.js").then((t) => t.d$), "../../icons/IconSettingsBold.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e0), "../../icons/IconSize.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e1), "../../icons/IconSliderKnobs.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e2), "../../icons/IconSortIdle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e3), "../../icons/IconSparkle.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e4), "../../icons/IconSpotlio.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e5), "../../icons/IconStar.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e6), "../../icons/IconStatistics.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e7), "../../icons/IconStopChat.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e8), "../../icons/IconStreamLineHub.vue": () => import("./icons-Be1wtE70.js").then((t) => t.e9), "../../icons/IconStreamLineHubNewLogo.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ea), "../../icons/IconSun.vue": () => import("./icons-Be1wtE70.js").then((t) => t.eb), "../../icons/IconSwap.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ec), "../../icons/IconText.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ed), "../../icons/IconTextThumbnail.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ee), "../../icons/IconThinDocument.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ef), "../../icons/IconThinFile.vue": () => import("./icons-Be1wtE70.js").then((t) => t.eg), "../../icons/IconThumbsDown.vue": () => import("./icons-Be1wtE70.js").then((t) => t.eh), "../../icons/IconTick.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ei), "../../icons/IconUser.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ej), "../../icons/IconVerticalDots.vue": () => import("./icons-Be1wtE70.js").then((t) => t.ek), "../../icons/IconVideoCamera.vue": () => import("./icons-Be1wtE70.js").then((t) => t.el), "../../icons/IconWarningOctal.vue": () => import("./icons-Be1wtE70.js").then((t) => t.em), "../../icons/IconX.vue": () => import("./icons-Be1wtE70.js").then((t) => t.en), "../../icons/IconZip.vue": () => import("./icons-Be1wtE70.js").then((t) => t.eo) }), `../../icons/${p}.vue`, 4).catch(() => ({ template: "<div></div>" }))
3689
3695
  ) : null : null, g = M(() => o(e.leadingIcon)), b = M(() => o(e.trailingIcon)), P = M(() => ({
3690
3696
  [`freddy-plugins-input-field--${e.size}`]: !0,
3691
3697
  [`freddy-plugins-input-field--${e.colorStyle}`]: !0,
@@ -3728,10 +3734,10 @@ const ue = new _s(
3728
3734
  return [
3729
3735
  g.value ? (c(), E(K(g.value), {
3730
3736
  key: 0,
3731
- class: A(["freddy-plugins-input-leading-icon", `freddy-plugins-input-leading-icon--${p.colorStyle}`]),
3737
+ class: D(["freddy-plugins-input-leading-icon", `freddy-plugins-input-leading-icon--${p.colorStyle}`]),
3732
3738
  onClick: C
3733
3739
  }, null, 8, ["class"])) : S("", !0),
3734
- Q(a("input", {
3740
+ Y(a("input", {
3735
3741
  id: (h = r.value) == null ? void 0 : h.inputId,
3736
3742
  ref_key: "inputRef",
3737
3743
  ref: l,
@@ -3740,7 +3746,7 @@ const ue = new _s(
3740
3746
  placeholder: p.placeholder,
3741
3747
  disabled: p.disabled,
3742
3748
  readonly: p.readonly,
3743
- class: A(["freddy-plugins-input-field", P.value]),
3749
+ class: D(["freddy-plugins-input-field", P.value]),
3744
3750
  onInput: V,
3745
3751
  onFocus: v,
3746
3752
  onBlur: T,
@@ -3755,13 +3761,13 @@ const ue = new _s(
3755
3761
  }, {
3756
3762
  default: Z(() => [
3757
3763
  (c(), E(K(b.value), {
3758
- class: A(["freddy-plugins-input-trailing-icon", `freddy-plugins-input-trailing-icon--${p.colorStyle}`])
3764
+ class: D(["freddy-plugins-input-trailing-icon", `freddy-plugins-input-trailing-icon--${p.colorStyle}`])
3759
3765
  }, null, 8, ["class"]))
3760
3766
  ]),
3761
3767
  _: 1
3762
3768
  }, 8, ["text"])) : b.value ? (c(), E(K(b.value), {
3763
3769
  key: 2,
3764
- class: A(["freddy-plugins-input-trailing-icon", `freddy-plugins-input-trailing-icon--${p.colorStyle}`]),
3770
+ class: D(["freddy-plugins-input-trailing-icon", `freddy-plugins-input-trailing-icon--${p.colorStyle}`]),
3765
3771
  onClick: I
3766
3772
  }, null, 8, ["class"])) : S("", !0)
3767
3773
  ];
@@ -3825,7 +3831,7 @@ const ue = new _s(
3825
3831
  },
3826
3832
  emits: ["update:countryCode", "update:phoneNumber", "country-change", "update:modelValue", "input", "focus", "blur", "keydown", "leading-icon-click", "trailing-icon-click", "trailing-button-click", "update:currency", "update:amount", "currency-change", "update:protocol", "update:url", "protocol-change", "update:cardNumber", "card-type-detected", "update:tags", "tag-added", "tag-removed", "max-tags-reached", "copy-success", "copy-error"],
3827
3833
  setup(y, { expose: m, emit: i }) {
3828
- const e = y, s = i, l = D(null), r = D(null), u = D(e.phoneNumber || ""), d = D(!1), o = D(e.countryCode || "US"), g = [
3834
+ const e = y, s = i, l = A(null), r = A(null), u = A(e.phoneNumber || ""), d = A(!1), o = A(e.countryCode || "US"), g = [
3829
3835
  { code: "US", name: "United States", flag: "🇺🇸", dialCode: "+1" },
3830
3836
  { code: "GB", name: "United Kingdom", flag: "🇬🇧", dialCode: "+44" },
3831
3837
  { code: "CA", name: "Canada", flag: "🇨🇦", dialCode: "+1" },
@@ -3896,7 +3902,7 @@ const ue = new _s(
3896
3902
  var w;
3897
3903
  return [
3898
3904
  a("div", {
3899
- class: A(["freddy-plugins-figma-dropdown", `freddy-plugins-figma-dropdown--${t.colorStyle}`]),
3905
+ class: D(["freddy-plugins-figma-dropdown", `freddy-plugins-figma-dropdown--${t.colorStyle}`]),
3900
3906
  onClick: v
3901
3907
  }, [
3902
3908
  a("span", ha, B(V.value.code), 1),
@@ -3904,11 +3910,11 @@ const ue = new _s(
3904
3910
  ], 2),
3905
3911
  d.value ? (c(), f("div", {
3906
3912
  key: 0,
3907
- class: A(["freddy-plugins-country-options-dropdown", `freddy-plugins-country-options-dropdown--${t.colorStyle}`])
3913
+ class: D(["freddy-plugins-country-options-dropdown", `freddy-plugins-country-options-dropdown--${t.colorStyle}`])
3908
3914
  }, [
3909
3915
  (c(!0), f(O, null, U(P.value, (_) => (c(), f("div", {
3910
3916
  key: _.code,
3911
- class: A(["freddy-plugins-country-option", `freddy-plugins-country-option--${t.colorStyle}`]),
3917
+ class: D(["freddy-plugins-country-option", `freddy-plugins-country-option--${t.colorStyle}`]),
3912
3918
  onClick: (n) => T(_)
3913
3919
  }, [
3914
3920
  a("span", ma, B(_.flag), 1),
@@ -3917,9 +3923,9 @@ const ue = new _s(
3917
3923
  ], 10, fa))), 128))
3918
3924
  ], 2)) : S("", !0),
3919
3925
  a("div", {
3920
- class: A(["freddy-plugins-figma-text-input", `freddy-plugins-figma-text-input--${t.colorStyle}`])
3926
+ class: D(["freddy-plugins-figma-text-input", `freddy-plugins-figma-text-input--${t.colorStyle}`])
3921
3927
  }, [
3922
- Q(a("input", {
3928
+ Y(a("input", {
3923
3929
  id: (w = r.value) == null ? void 0 : w.inputId,
3924
3930
  ref_key: "inputRef",
3925
3931
  ref: l,
@@ -3933,7 +3939,7 @@ const ue = new _s(
3933
3939
  onFocus: C,
3934
3940
  onBlur: I
3935
3941
  }, null, 40, ga), [
3936
- [Y, u.value]
3942
+ [Q, u.value]
3937
3943
  ]),
3938
3944
  t.trailingIcon === "IconQuestion" ? (c(), f("div", Ia, [
3939
3945
  t.tooltipText ? (c(), E(ie, {
@@ -4135,7 +4141,7 @@ function Pa(y, m, i, e, s, l) {
4135
4141
  i.isVisible ? (c(), f("div", wa, [
4136
4142
  a("div", Sa, [
4137
4143
  a("div", {
4138
- class: A({
4144
+ class: D({
4139
4145
  "p-8 bg-background rounded-[2.5rem] overflow-hidden text-white": i.largeModel,
4140
4146
  "freddy-plugins-modal-container-large": i.largeModel
4141
4147
  })
@@ -4156,7 +4162,7 @@ function Pa(y, m, i, e, s, l) {
4156
4162
  _: 3
4157
4163
  });
4158
4164
  }
4159
- const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4165
+ const Aa = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4160
4166
  __name: "InstructionsModal",
4161
4167
  props: {
4162
4168
  isVisible: {
@@ -4165,7 +4171,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4165
4171
  }
4166
4172
  },
4167
4173
  setup(y) {
4168
- return (m, i) => (c(), E(Da, { isVisible: y.isVisible }, {
4174
+ return (m, i) => (c(), E(Aa, { isVisible: y.isVisible }, {
4169
4175
  header: Z(() => [...i[0] || (i[0] = [
4170
4176
  a("h2", null, "Instructions", -1)
4171
4177
  ])]),
@@ -4175,7 +4181,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4175
4181
  _: 1
4176
4182
  }, 8, ["isVisible"]));
4177
4183
  }
4178
- }), Aa = ["value", "placeholder"], Ba = /* @__PURE__ */ N({
4184
+ }), Da = ["value", "placeholder"], Ba = /* @__PURE__ */ N({
4179
4185
  __name: "InstructiontextArea",
4180
4186
  props: {
4181
4187
  inputValue: {},
@@ -4196,7 +4202,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4196
4202
  onInput: l,
4197
4203
  class: "instruction-text-input",
4198
4204
  "aria-label": "Instruction input"
4199
- }, null, 44, Aa));
4205
+ }, null, 44, Da));
4200
4206
  }
4201
4207
  }), pc = /* @__PURE__ */ H(Ba, [["__scopeId", "data-v-d4000e78"]]), Fa = { class: "freddy-plugins-modal-header" }, Ma = { class: "freddy-plugins-modal-body" }, hc = /* @__PURE__ */ N({
4202
4208
  __name: "ModalOverlay",
@@ -4226,7 +4232,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4226
4232
  }, [
4227
4233
  a("header", Fa, [
4228
4234
  a("h2", {
4229
- class: A(["freddy-plugins-modal-title", r.headerClass])
4235
+ class: D(["freddy-plugins-modal-title", r.headerClass])
4230
4236
  }, B(r.modalTitle), 3),
4231
4237
  a("button", {
4232
4238
  class: "freddy-plugins-modal-close",
@@ -4248,7 +4254,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4248
4254
  },
4249
4255
  setup(y) {
4250
4256
  return te(), (m, i) => (c(), f("div", {
4251
- class: A(["freddy-plugin-spinner", m.customClass])
4257
+ class: D(["freddy-plugin-spinner", m.customClass])
4252
4258
  }, null, 2));
4253
4259
  }
4254
4260
  }), Va = ["placeholder", "maxlength"], _e = /* @__PURE__ */ N({
@@ -4263,7 +4269,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4263
4269
  emits: ["update:searchInput", "clear"],
4264
4270
  setup(y, { emit: m }) {
4265
4271
  te();
4266
- const i = qe(), e = D(null), s = D(null), l = D(null), r = m, u = () => {
4272
+ const i = qe(), e = A(null), s = A(null), l = A(null), r = m, u = () => {
4267
4273
  var g;
4268
4274
  (g = s.value) == null || g.focus();
4269
4275
  }, d = () => {
@@ -4276,11 +4282,11 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4276
4282
  return c(), f("div", {
4277
4283
  ref_key: "dropdownRef",
4278
4284
  ref: l,
4279
- class: A(["freddy-search-wrapper", F(i).class]),
4285
+ class: D(["freddy-search-wrapper", F(i).class]),
4280
4286
  onClick: u
4281
4287
  }, [
4282
4288
  L(F(Me), { class: "freddy-search-icon" }),
4283
- Q(a("input", {
4289
+ Y(a("input", {
4284
4290
  type: "text",
4285
4291
  id: "search-input",
4286
4292
  class: "freddy-search-input",
@@ -4291,7 +4297,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4291
4297
  placeholder: g.placeholder,
4292
4298
  maxlength: g.maxCharLimit
4293
4299
  }, null, 40, Va), [
4294
- [Y, e.value]
4300
+ [Q, e.value]
4295
4301
  ]),
4296
4302
  g.showLoaderForSearch ? (c(), E(La, {
4297
4303
  key: 0,
@@ -4325,7 +4331,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4325
4331
  },
4326
4332
  emits: ["select"],
4327
4333
  setup(y, { emit: m }) {
4328
- const i = y, e = m, s = D(!1), l = D(""), r = D(null), u = M(() => !i.searchable || !l.value ? i.options : i.options.filter(
4334
+ const i = y, e = m, s = A(!1), l = A(""), r = A(null), u = M(() => !i.searchable || !l.value ? i.options : i.options.filter(
4329
4335
  (P) => P.value.toLowerCase().includes(l.value.toLowerCase())
4330
4336
  )), d = () => {
4331
4337
  s.value = !s.value, s.value || (l.value = "");
@@ -4349,7 +4355,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4349
4355
  onKeydown: z(o, ["esc"])
4350
4356
  }, [
4351
4357
  a("div", {
4352
- class: A(["model-dropdown-trigger", [
4358
+ class: D(["model-dropdown-trigger", [
4353
4359
  `model-dropdown-trigger--${P.size}`,
4354
4360
  { "model-dropdown-trigger--open": s.value }
4355
4361
  ]]),
@@ -4386,7 +4392,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4386
4392
  var C;
4387
4393
  return c(), f("li", {
4388
4394
  key: k.id,
4389
- class: A(["model-dropdown-option", {
4395
+ class: D(["model-dropdown-option", {
4390
4396
  "model-dropdown-option--selected": ((C = r.value) == null ? void 0 : C.id) === k.id
4391
4397
  }]),
4392
4398
  onClick: (I) => g(k)
@@ -4460,7 +4466,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4460
4466
  key: 0,
4461
4467
  class: "freddy-pagination-nav",
4462
4468
  "aria-label": "Pagination"
4463
- }, qa = ["disabled"], Ja = { class: "freddy-pagination-dynamic-container" }, Qa = ["onClick", "disabled"], Ya = ["disabled"], vc = /* @__PURE__ */ N({
4469
+ }, qa = ["disabled"], Ja = { class: "freddy-pagination-dynamic-container" }, Ya = ["onClick", "disabled"], Qa = ["disabled"], vc = /* @__PURE__ */ N({
4464
4470
  __name: "Pagination",
4465
4471
  props: {
4466
4472
  totalItems: { type: Number, required: !0, default: 0 },
@@ -4487,24 +4493,24 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4487
4493
  }
4488
4494
  return (u, d) => s.value > 0 ? (c(), f("nav", Wa, [
4489
4495
  a("button", {
4490
- class: A(["freddy-pagination-end-button", { "freddy-pagination-hover-enabled": y.currentPage !== 1 }]),
4496
+ class: D(["freddy-pagination-end-button", { "freddy-pagination-hover-enabled": y.currentPage !== 1 }]),
4491
4497
  onClick: d[0] || (d[0] = (o) => r(y.currentPage - 1)),
4492
4498
  disabled: y.currentPage === 1
4493
4499
  }, " Previous ", 10, qa),
4494
4500
  a("div", Ja, [
4495
4501
  (c(!0), f(O, null, U(l.value, (o) => (c(), f("button", {
4496
4502
  key: String(o),
4497
- class: A(["freddy-pagination-number-button", { active: o === y.currentPage }]),
4503
+ class: D(["freddy-pagination-number-button", { active: o === y.currentPage }]),
4498
4504
  onClick: (g) => r(o),
4499
4505
  disabled: o === "..." || o === y.currentPage
4500
- }, B(o), 11, Qa))), 128)),
4506
+ }, B(o), 11, Ya))), 128)),
4501
4507
  a("button", {
4502
- class: A(["freddy-pagination-end-button", {
4508
+ class: D(["freddy-pagination-end-button", {
4503
4509
  "freddy-pagination-hover-enabled": y.currentPage !== s.value
4504
4510
  }]),
4505
4511
  onClick: d[1] || (d[1] = (o) => r(y.currentPage + 1)),
4506
4512
  disabled: y.currentPage === s.value || s.value === 0
4507
- }, " Next ", 10, Ya)
4513
+ }, " Next ", 10, Qa)
4508
4514
  ])
4509
4515
  ])) : S("", !0);
4510
4516
  }
@@ -4517,7 +4523,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4517
4523
  },
4518
4524
  setup(y) {
4519
4525
  return te(), (m, i) => (c(), f("button", {
4520
- class: A(["chat-bar-send-btn", { active: m.active, [`chat-bar-send-btn--${m.size}`]: !0 }]),
4526
+ class: D(["chat-bar-send-btn", { active: m.active, [`chat-bar-send-btn--${m.size}`]: !0 }]),
4521
4527
  disabled: m.disabled,
4522
4528
  onClick: i[0] || (i[0] = (e) => m.$emit("click"))
4523
4529
  }, [
@@ -4616,7 +4622,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4616
4622
  },
4617
4623
  emits: ["update:modelValue", "update:rangeValue"],
4618
4624
  setup(y, { emit: m }) {
4619
- const i = y, e = m, s = D(!1), l = D(null), r = M(() => Math.round(i.modelValue)), u = M(() => {
4625
+ const i = y, e = m, s = A(!1), l = A(null), r = M(() => Math.round(i.modelValue)), u = M(() => {
4620
4626
  const k = i.max - i.min, C = i.modelValue - i.min;
4621
4627
  return Math.min(100, Math.max(0, C / k * 100));
4622
4628
  }), d = M(() => u.value), o = (k) => {
@@ -4705,7 +4711,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4705
4711
  k.showValue ? (c(), f("div", hl, B(r.value), 1)) : S("", !0)
4706
4712
  ])) : S("", !0),
4707
4713
  a("div", {
4708
- class: A(["freddy-plugins-slider-track-container", { "freddy-plugins-slider-disabled": k.disabled }]),
4714
+ class: D(["freddy-plugins-slider-track-container", { "freddy-plugins-slider-disabled": k.disabled }]),
4709
4715
  onClick: v,
4710
4716
  onKeydown: T,
4711
4717
  tabindex: k.disabled ? -1 : 0,
@@ -4726,7 +4732,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4726
4732
  style: ne({ width: u.value + "%" })
4727
4733
  }, null, 4),
4728
4734
  a("div", {
4729
- class: A(["freddy-plugins-slider-thumb", {
4735
+ class: D(["freddy-plugins-slider-thumb", {
4730
4736
  "freddy-plugins-slider-thumb-dragging": s.value,
4731
4737
  "freddy-plugins-slider-thumb-disabled": k.disabled
4732
4738
  }]),
@@ -4768,16 +4774,16 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4768
4774
  m.value.splice(l, 1);
4769
4775
  };
4770
4776
  return (l, r) => (c(), f("div", {
4771
- class: A(["freddy-plugins-snackbar-container", `freddy-plugins-snackbar-container--${e.value}`])
4777
+ class: D(["freddy-plugins-snackbar-container", `freddy-plugins-snackbar-container--${e.value}`])
4772
4778
  }, [
4773
4779
  (c(!0), f(O, null, U(F(m), (u, d) => (c(), f("div", {
4774
4780
  key: d,
4775
- class: A(["freddy-plugins-snackbar", `freddy-plugins-snackbar--${u.toastType}`])
4781
+ class: D(["freddy-plugins-snackbar", `freddy-plugins-snackbar--${u.toastType}`])
4776
4782
  }, [
4777
4783
  a("div", yl, [
4778
4784
  a("div", gl, [
4779
4785
  (c(), E(K(i(u.toastType)), {
4780
- class: A(["freddy-plugins-snackbar-icon", [
4786
+ class: D(["freddy-plugins-snackbar-icon", [
4781
4787
  u.toastType === "info" && "freddy-plugins-snackbar-icon--info",
4782
4788
  u.toastType === "danger" && "freddy-plugins-snackbar-icon--danger",
4783
4789
  u.toastType === "success" && "freddy-plugins-snackbar-icon--success"
@@ -4834,7 +4840,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4834
4840
  l.stopPropagation(), i.disabled || e("update:modelValue", !i.modelValue);
4835
4841
  };
4836
4842
  return (l, r) => (c(), f("div", {
4837
- class: A(["freddy-plugins-switch-slot", {
4843
+ class: D(["freddy-plugins-switch-slot", {
4838
4844
  "freddy-plugins-switch-slot--bordered": l.variant === "bordered",
4839
4845
  "freddy-plugins-switch-slot--disabled": l.disabled
4840
4846
  }])
@@ -4854,7 +4860,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4854
4860
  }, 8, ["text", "placement"])) : S("", !0)
4855
4861
  ])) : S("", !0),
4856
4862
  a("button", {
4857
- class: A(["freddy-plugins-switch-slot__switch", { "freddy-plugins-switch-slot__switch--on": l.modelValue }]),
4863
+ class: D(["freddy-plugins-switch-slot__switch", { "freddy-plugins-switch-slot__switch--on": l.modelValue }]),
4858
4864
  "aria-checked": l.modelValue,
4859
4865
  role: "switch",
4860
4866
  tabindex: l.disabled ? -1 : 0,
@@ -4875,7 +4881,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4875
4881
  l.hint ? (c(), f("p", xl, B(l.hint), 1)) : S("", !0)
4876
4882
  ], 2));
4877
4883
  }
4878
- }), kc = /* @__PURE__ */ H(Pl, [["__scopeId", "data-v-edc0859a"]]), Dl = { class: "freddy-plugin-nav-bar" }, Al = ["onClick"], _c = /* @__PURE__ */ N({
4884
+ }), kc = /* @__PURE__ */ H(Pl, [["__scopeId", "data-v-edc0859a"]]), Al = { class: "freddy-plugin-nav-bar" }, Dl = ["onClick"], _c = /* @__PURE__ */ N({
4879
4885
  __name: "TabList",
4880
4886
  props: {
4881
4887
  tabList: {},
@@ -4886,10 +4892,10 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4886
4892
  },
4887
4893
  emits: ["tabSwitch"],
4888
4894
  setup(y, { emit: m }) {
4889
- const i = y, e = m, s = D(i.currentTab), l = (r) => {
4895
+ const i = y, e = m, s = A(i.currentTab), l = (r) => {
4890
4896
  s.value !== r.id && (s.value = r.id, e("tabSwitch", r.id));
4891
4897
  };
4892
- return (r, u) => (c(), f("div", Dl, [
4898
+ return (r, u) => (c(), f("div", Al, [
4893
4899
  (c(!0), f(O, null, U(r.tabList, (d, o) => (c(), f("button", {
4894
4900
  class: "freddy-plugin-tab-list-menu-button",
4895
4901
  key: o,
@@ -4897,9 +4903,9 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4897
4903
  }, [
4898
4904
  J(B(d.title) + " ", 1),
4899
4905
  a("span", {
4900
- class: A({ "freddy-plugin-active-tab": s.value === d.id })
4906
+ class: D({ "freddy-plugin-active-tab": s.value === d.id })
4901
4907
  }, null, 2)
4902
- ], 8, Al))), 128))
4908
+ ], 8, Dl))), 128))
4903
4909
  ]));
4904
4910
  }
4905
4911
  }), Bl = { class: "freddy-plugins-toast-wrapper" }, Fl = { class: "freddy-plugins-toast-icon-wrapper" }, Ml = { class: "freddy-plugins-toast-message" }, Ll = ["onClick"], Cc = /* @__PURE__ */ N({
@@ -4926,7 +4932,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4926
4932
  return (r, u) => (c(), f("div", Bl, [
4927
4933
  (c(!0), f(O, null, U(F(m), (d, o) => (c(), f("div", {
4928
4934
  key: o,
4929
- class: A(["freddy-plugins-toast-item", e(d.toastType)])
4935
+ class: D(["freddy-plugins-toast-item", e(d.toastType)])
4930
4936
  }, [
4931
4937
  a("div", Fl, [
4932
4938
  (c(), E(K(s(d.toastType)), { class: "freddy-plugins-toast-icon" }))
@@ -4952,7 +4958,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4952
4958
  hideDelay: { default: 0 }
4953
4959
  },
4954
4960
  setup(y) {
4955
- const m = y, i = D(!1), e = D(!1), s = D(null);
4961
+ const m = y, i = A(!1), e = A(!1), s = A(null);
4956
4962
  let l = null, r = null;
4957
4963
  const u = () => {
4958
4964
  r && (clearTimeout(r), r = null), l && clearTimeout(l), l = setTimeout(() => {
@@ -4986,7 +4992,7 @@ const Da = /* @__PURE__ */ H(Ca, [["render", Pa]]), uc = /* @__PURE__ */ N({
4986
4992
  default: Z(() => [
4987
4993
  i.value ? (c(), f("div", {
4988
4994
  key: 0,
4989
- class: A(["freddy-plugins-tooltip-v2-content", [
4995
+ class: D(["freddy-plugins-tooltip-v2-content", [
4990
4996
  b.placement,
4991
4997
  e.value ? "force-bottom" : "",
4992
4998
  b.contentClass
@@ -5012,7 +5018,7 @@ function Sc(y = {}) {
5012
5018
  logErrors: m = !0,
5013
5019
  throwOnCritical: i = !1,
5014
5020
  maxRetries: e = 3
5015
- } = y, s = D([]), l = D(!1), r = D(0), u = M(() => s.value.length > 0), d = M(() => s.value[s.value.length - 1] || null), o = (T, k) => {
5021
+ } = y, s = A([]), l = A(!1), r = A(0), u = M(() => s.value.length > 0), d = M(() => s.value[s.value.length - 1] || null), o = (T, k) => {
5016
5022
  const C = {
5017
5023
  message: T instanceof Error ? T.message : String(T),
5018
5024
  stack: T instanceof Error ? T.stack : void 0,
@@ -5088,7 +5094,7 @@ function Tc(y = {}) {
5088
5094
  enableMetrics: m = process.env.NODE_ENV === "development",
5089
5095
  trackMemory: i = !1,
5090
5096
  sampleRate: e = 0.1
5091
- } = y, s = D([]), l = D(!1), r = D(0), u = M(() => s.value.length === 0 ? 0 : s.value.reduce((p, t) => p + t.renderTime, 0) / s.value.length), d = M(() => s.value.length === 0 ? 0 : Math.max(...s.value.map(($) => $.renderTime))), o = ($) => {
5097
+ } = y, s = A([]), l = A(!1), r = A(0), u = M(() => s.value.length === 0 ? 0 : s.value.reduce((p, t) => p + t.renderTime, 0) / s.value.length), d = M(() => s.value.length === 0 ? 0 : Math.max(...s.value.map(($) => $.renderTime))), o = ($) => {
5092
5098
  !m || Math.random() > e || (l.value = !0, r.value = performance.now(), $ && process.env.NODE_ENV);
5093
5099
  }, g = ($, p = 1) => {
5094
5100
  if (!l.value || !m) return;
@@ -5187,173 +5193,175 @@ export {
5187
5193
  ql as AssistantList,
5188
5194
  Jl as AssistantsHeader,
5189
5195
  ao as AvatarChoosing,
5190
- Ql as AvatarList,
5196
+ Yl as AvatarList,
5191
5197
  ze as BaseButton,
5192
5198
  ke as BaseInput,
5193
5199
  Lo as BaseTabButton,
5194
5200
  ra as CardInput,
5195
- Yl as ChooseAssistantAvatar,
5201
+ Ql as ChooseAssistantAvatar,
5196
5202
  sc as CodeBlock,
5197
5203
  Pc as ConfirmationModal,
5198
5204
  ic as CustomCheckbox,
5199
5205
  pa as DefaultInput,
5200
- Dc as DeleteConfirmationModal,
5206
+ Ac as DeleteConfirmationModal,
5201
5207
  ac as Descriptions,
5202
5208
  lc as DiffTextarea,
5203
5209
  cc as Dropdown,
5204
5210
  Ie as EditFeaturedExcerptModal,
5205
5211
  rc as EmailCodeVerification,
5212
+ Dc as IconAddChatPop,
5206
5213
  it as IconAddFileSystem,
5207
- Ac as IconAddPeople,
5208
- Bc as IconAitronos,
5214
+ Bc as IconAddPeople,
5215
+ Fc as IconAitronos,
5209
5216
  dt as IconApple,
5210
- Fc as IconApplePay,
5211
- Mc as IconArrowDown,
5212
- Lc as IconArrowLeft,
5213
- Vc as IconArrowUp,
5217
+ Mc as IconApplePay,
5218
+ Lc as IconAppsGrid,
5219
+ Vc as IconArrowDown,
5220
+ Ec as IconArrowLeft,
5221
+ Nc as IconArrowUp,
5214
5222
  nt as IconBadgeCheck,
5215
- Ec as IconBroom,
5216
- Nc as IconBuildings,
5217
- Rc as IconCalendarWithTickInside,
5218
- Oc as IconCallNotAllowed,
5219
- zc as IconCardPay,
5220
- Hc as IconCaution,
5221
- jc as IconChangeLog,
5222
- Uc as IconCheckCircleFill,
5223
+ Rc as IconBroom,
5224
+ Oc as IconBuildings,
5225
+ zc as IconCalendarWithTickInside,
5226
+ Hc as IconCallNotAllowed,
5227
+ jc as IconCardPay,
5228
+ Uc as IconCaution,
5229
+ Kc as IconChangeLog,
5230
+ Gc as IconCheckCircleFill,
5223
5231
  xe as IconCheckInCircle,
5224
5232
  $e as IconCheckRounded,
5225
5233
  le as IconChevronDown,
5226
- Kc as IconChevronLeft,
5227
- Gc as IconChevronRight,
5234
+ Zc as IconChevronLeft,
5235
+ Wc as IconChevronRight,
5228
5236
  Ve as IconChevronUp,
5229
- Zc as IconCircledCheck,
5230
- Wc as IconClock,
5231
- qc as IconClosedEnvelope,
5232
- Jc as IconCloudUpload,
5233
- Qc as IconConnectorConfluence,
5234
- Yc as IconConnectorFigma,
5235
- Xc as IconConnectorFreshDesk,
5236
- er as IconConnectorGitHub,
5237
- tr as IconConnectorJira,
5238
- or as IconConnectorLinear,
5239
- nr as IconConnectorNotion,
5240
- sr as IconConnectorSlack,
5241
- ir as IconConnectorZapier,
5237
+ qc as IconCircledCheck,
5238
+ Jc as IconClock,
5239
+ Yc as IconClosedEnvelope,
5240
+ Qc as IconCloudUpload,
5241
+ Xc as IconConnectorConfluence,
5242
+ er as IconConnectorFigma,
5243
+ tr as IconConnectorFreshDesk,
5244
+ or as IconConnectorGitHub,
5245
+ nr as IconConnectorJira,
5246
+ sr as IconConnectorLinear,
5247
+ ir as IconConnectorNotion,
5248
+ ar as IconConnectorSlack,
5249
+ lr as IconConnectorZapier,
5242
5250
  Te as IconCopy,
5243
5251
  ee as IconCross,
5244
- ar as IconCrossCircleFill,
5245
- lr as IconCrossInCircle,
5246
- cr as IconCurrentTick,
5247
- Ye as IconDataUpload,
5248
- rr as IconDelete,
5249
- dr as IconDeleteFillRed,
5250
- ur as IconDialingPhone,
5251
- pr as IconDisabledAlert,
5252
- hr as IconDocumentation,
5253
- fr as IconDownload,
5252
+ cr as IconCrossCircleFill,
5253
+ rr as IconCrossInCircle,
5254
+ dr as IconCurrentTick,
5255
+ Qe as IconDataUpload,
5256
+ ur as IconDelete,
5257
+ pr as IconDeleteFillRed,
5258
+ hr as IconDialingPhone,
5259
+ fr as IconDisabledAlert,
5260
+ mr as IconDocumentation,
5261
+ vr as IconDownload,
5254
5262
  lt as IconDribbble,
5255
- mr as IconDropdownArrow,
5263
+ yr as IconDropdownArrow,
5256
5264
  pe as IconEdit,
5257
5265
  kt as IconEditLinePath,
5258
- vr as IconEllipse,
5259
- yr as IconExcelThumbnail,
5266
+ gr as IconEllipse,
5267
+ Ir as IconExcelThumbnail,
5260
5268
  et as IconEye,
5261
5269
  ut as IconFacebook,
5262
5270
  ct as IconFigma,
5263
5271
  ht as IconFile,
5264
5272
  tt as IconFileSystem,
5265
- gr as IconFileUpload,
5273
+ br as IconFileUpload,
5266
5274
  st as IconFilter,
5267
5275
  vt as IconFolder,
5268
- Ir as IconFreddyHub,
5269
- br as IconFreddyHubLogo,
5270
- kr as IconFreddyHubNewLogo,
5271
- _r as IconFreddyHubTitle,
5272
- Cr as IconFreddySmall,
5273
- wr as IconGlobExpand,
5274
- Sr as IconGlobe,
5276
+ kr as IconFreddyHub,
5277
+ _r as IconFreddyHubLogo,
5278
+ Cr as IconFreddyHubNewLogo,
5279
+ wr as IconFreddyHubTitle,
5280
+ Sr as IconFreddySmall,
5281
+ Tr as IconGlobExpand,
5282
+ $r as IconGlobe,
5275
5283
  pt as IconGoogle,
5276
- Tr as IconHollowCircle,
5277
- $r as IconHome,
5284
+ xr as IconHollowCircle,
5285
+ Pr as IconHome,
5278
5286
  re as IconInfoRounded,
5279
- xr as IconInvalidInvoice,
5280
- Pr as IconInvoice,
5281
- Dr as IconInvoiceSwitch,
5282
- Ar as IconLapTableBottom,
5283
- Br as IconLense,
5287
+ Ar as IconInvalidInvoice,
5288
+ Dr as IconInvoice,
5289
+ Br as IconInvoiceSwitch,
5290
+ Fr as IconLapTableBottom,
5291
+ Mr as IconLense,
5284
5292
  Ee as IconLightCross,
5285
- Fr as IconLink04,
5286
- Mr as IconLoadingError,
5287
- Lr as IconLoadingOrg,
5288
- Vr as IconLocationWithCircleIn,
5293
+ Lr as IconLink04,
5294
+ Vr as IconLoadingError,
5295
+ Er as IconLoadingOrg,
5296
+ Nr as IconLocationWithCircleIn,
5289
5297
  Je as IconLock,
5290
- Er as IconMarketPlace,
5298
+ Rr as IconMarketPlace,
5291
5299
  Ct as IconMaximize,
5292
- Nr as IconMicrophone,
5293
- Rr as IconMutedMicrophone,
5294
- Or as IconNewNotification,
5295
- Qe as IconNewTab,
5296
- zr as IconNotification,
5297
- Hr as IconOpenBook,
5300
+ Or as IconMicrophone,
5301
+ zr as IconMutedMicrophone,
5302
+ Hr as IconNewNotification,
5303
+ Ye as IconNewTab,
5304
+ jr as IconNotification,
5305
+ Ur as IconOpenBook,
5298
5306
  yt as IconPaperAirPlane,
5299
- jr as IconPauseCircle,
5300
- Ur as IconPdfThumbnail,
5301
- Kr as IconPenEdit,
5302
- Gr as IconPencil,
5303
- Zr as IconPeopleHub,
5304
- Wr as IconPersonCircle,
5305
- qr as IconPits,
5306
- Jr as IconPlay,
5307
+ Kr as IconPauseCircle,
5308
+ Gr as IconPdfThumbnail,
5309
+ Zr as IconPenEdit,
5310
+ Wr as IconPencil,
5311
+ qr as IconPeopleHub,
5312
+ Jr as IconPersonCircle,
5313
+ Yr as IconPits,
5314
+ Qr as IconPlay,
5307
5315
  Xe as IconPlus,
5308
- Qr as IconPolygonDown,
5309
- Yr as IconPresentation,
5310
- Xr as IconProgressBase,
5311
- ed as IconProgressComplete,
5312
- td as IconProgressGoing,
5313
- od as IconPurpose,
5314
- nd as IconPurseCircleFill,
5316
+ Xr as IconPolygonDown,
5317
+ ed as IconPresentation,
5318
+ td as IconProgressBase,
5319
+ od as IconProgressComplete,
5320
+ nd as IconProgressGoing,
5321
+ sd as IconPurpose,
5322
+ id as IconPurseCircleFill,
5315
5323
  fe as IconQuestion,
5316
- sd as IconRadio,
5317
- id as IconRadioFill,
5324
+ ad as IconRadio,
5325
+ ld as IconRadioFill,
5318
5326
  ft as IconRefresh,
5319
5327
  at as IconRevertedTriangle,
5320
5328
  Fe as IconRobotScreen,
5321
- ad as IconRoundTick,
5329
+ cd as IconRoundTick,
5322
5330
  Me as IconSearch,
5323
- ld as IconSearchOptimised,
5331
+ rd as IconSearchOptimised,
5324
5332
  _t as IconSectionHide,
5325
5333
  wt as IconSend,
5326
- cd as IconSettings,
5327
- rd as IconSettingsBold,
5328
- dd as IconSize,
5329
- ud as IconSliderKnobs,
5330
- pd as IconSortIdle,
5334
+ dd as IconSettings,
5335
+ ud as IconSettingsBold,
5336
+ pd as IconSize,
5337
+ hd as IconSliderKnobs,
5338
+ fd as IconSortIdle,
5331
5339
  Le as IconSparkle,
5332
- hd as IconSpotlio,
5340
+ md as IconSpotlio,
5333
5341
  ot as IconStar,
5334
- fd as IconStatistics,
5335
- md as IconStopChat,
5336
- vd as IconStreamLineHub,
5337
- yd as IconStreamLineHubNewLogo,
5342
+ vd as IconStatistics,
5343
+ yd as IconStopChat,
5344
+ gd as IconStreamLineHub,
5345
+ Id as IconStreamLineHubNewLogo,
5338
5346
  Ne as IconStyleDirective,
5339
- gd as IconSun,
5340
- Id as IconSwap,
5341
- bd as IconText,
5342
- kd as IconTextThumbnail,
5343
- _d as IconThinDocument,
5344
- Cd as IconThinFile,
5347
+ bd as IconSun,
5348
+ kd as IconSwap,
5349
+ _d as IconText,
5350
+ Cd as IconTextThumbnail,
5351
+ wd as IconThinDocument,
5352
+ Sd as IconThinFile,
5345
5353
  mt as IconThumbsDown,
5346
5354
  he as IconTick,
5347
- wd as IconUser,
5348
- Sd as IconVerticalDots,
5349
- Td as IconVideoCamera,
5350
- $d as IconWarningOctal,
5355
+ Td as IconUser,
5356
+ $d as IconVerticalDots,
5357
+ xd as IconVideoCamera,
5358
+ Pd as IconWarningOctal,
5351
5359
  rt as IconX,
5352
- xd as IconZip,
5360
+ Ad as IconZip,
5353
5361
  dc as InputField,
5354
5362
  uc as InstructionsModal,
5355
5363
  pc as InstructiontextArea,
5356
- Da as ModalBox,
5364
+ Aa as ModalBox,
5357
5365
  hc as ModalOverlay,
5358
5366
  fc as ModelDropdown,
5359
5367
  mc as OutputModeModal,
@@ -5371,7 +5379,7 @@ export {
5371
5379
  Ei as Switch,
5372
5380
  kc as SwitchSlot,
5373
5381
  _c as TabList,
5374
- Di as TextAreaInputField,
5382
+ Ai as TextAreaInputField,
5375
5383
  Cc as ToastMessage,
5376
5384
  ie as Tooltip,
5377
5385
  wc as TooltipV2,
@@ -5379,40 +5387,40 @@ export {
5379
5387
  tc as VectorSection,
5380
5388
  oc as VoiceList,
5381
5389
  Oe as VoiceSelection,
5382
- Pd as aiResponseToChatMessage,
5383
- Dd as calculatePercentage,
5384
- Ad as cloneDeepSafe,
5385
- Bd as copyToClipboard,
5390
+ Dd as aiResponseToChatMessage,
5391
+ Bd as calculatePercentage,
5392
+ Fd as cloneDeepSafe,
5393
+ Md as copyToClipboard,
5386
5394
  bt as createChangesObject,
5387
- Fd as daysInMonth,
5388
- Md as debounce,
5389
- Ld as deepEqual,
5395
+ Ld as daysInMonth,
5396
+ Vd as debounce,
5397
+ Ed as deepEqual,
5390
5398
  Ul as default,
5391
- Vd as defaultImageSrc,
5392
- Ed as extractStats,
5393
- Nd as fileSizeFormatter,
5394
- Rd as fillMissingDays,
5395
- Od as formatDate,
5396
- zd as formatDateToLocaleString,
5397
- Hd as formatLastUsedDate,
5399
+ Nd as defaultImageSrc,
5400
+ Rd as extractStats,
5401
+ Od as fileSizeFormatter,
5402
+ zd as fillMissingDays,
5403
+ Hd as formatDate,
5404
+ jd as formatDateToLocaleString,
5405
+ Ud as formatLastUsedDate,
5398
5406
  Kl as frSanitizePlugin,
5399
- jd as getDatesForMonth,
5400
- Ud as getDaysInMonth,
5407
+ Kd as getDatesForMonth,
5408
+ Gd as getDaysInMonth,
5401
5409
  It as getDisplayContent,
5402
- Kd as getFileNameFromUrl,
5403
- Gd as getShortMonthName,
5404
- Zd as hasOverflow,
5405
- Wd as hasTextImprovements,
5410
+ Zd as getFileNameFromUrl,
5411
+ Wd as getShortMonthName,
5412
+ qd as hasOverflow,
5413
+ Jd as hasTextImprovements,
5406
5414
  Gl as iconStylePlugin,
5407
- qd as interpolateColor,
5408
- Jd as isValidAIResponse,
5409
- Qd as openConfirmBoxModal,
5410
- Yd as openDeleteConfirmModal,
5411
- Xd as parseAITextResponse,
5415
+ Yd as interpolateColor,
5416
+ Qd as isValidAIResponse,
5417
+ Xd as openConfirmBoxModal,
5418
+ eu as openDeleteConfirmModal,
5419
+ tu as parseAITextResponse,
5412
5420
  gt as parseApiResponse,
5413
- eu as readableDateFormat,
5414
- tu as scrollToBottom,
5415
- ou as scrollToElement,
5421
+ ou as readableDateFormat,
5422
+ nu as scrollToBottom,
5423
+ su as scrollToElement,
5416
5424
  Sc as useErrorHandler,
5417
5425
  Tc as usePerformance,
5418
5426
  St as useSnackBar,