@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.
- package/CHANGELOG.md +13 -0
- package/dist/{icons-DpyIf23e.js → icons-Be1wtE70.js} +1286 -1220
- package/dist/icons-Be1wtE70.js.map +1 -0
- package/dist/icons-CCfXKsmx.cjs +2 -0
- package/dist/icons-CCfXKsmx.cjs.map +1 -0
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -4389
- package/dist/index.js +521 -513
- package/dist/index.js.map +1 -1
- package/dist/src/App.vue.d.ts +2 -0
- package/dist/src/animations/AnimeSpaceman.vue.d.ts +8 -0
- package/dist/src/animations/index.d.ts +1 -0
- package/dist/src/assets/logos/index.d.ts +4 -0
- package/dist/src/components/AdvancedModal.vue.d.ts +23 -0
- package/dist/src/components/Assistant/AssistantField.vue.d.ts +13 -0
- package/dist/src/components/Assistant/AssistantList.vue.d.ts +10 -0
- package/dist/src/components/Assistant/AssistantsHeader.vue.d.ts +17 -0
- package/dist/src/components/Assistant/AvatarChoosing.vue.d.ts +16 -0
- package/dist/src/components/Assistant/AvatarList.vue.d.ts +30 -0
- package/dist/src/components/Assistant/ChooseAssistantAvatar.vue.d.ts +77 -0
- package/dist/src/components/Assistant/RulesManagement.vue.d.ts +28 -0
- package/dist/src/components/Assistant/VectorFrame.vue.d.ts +15 -0
- package/dist/src/components/Assistant/VectorSection.vue.d.ts +31 -0
- package/dist/src/components/Assistant/VoiceList.vue.d.ts +27 -0
- package/dist/src/components/Assistant/VoiceSelection.vue.d.ts +12 -0
- package/dist/src/components/Buttons/BaseButton.vue.d.ts +25 -0
- package/dist/src/components/Buttons/SocialButtons.vue.d.ts +13 -0
- package/dist/src/components/Buttons/index.d.ts +2 -0
- package/dist/src/components/CodeBlock.vue.d.ts +6 -0
- package/dist/src/components/ConfirmationModal.vue.d.ts +28 -0
- package/dist/src/components/CustomCheckbox.vue.d.ts +13 -0
- package/dist/src/components/DeleteConfirmationModal.vue.d.ts +28 -0
- package/dist/src/components/Descriptions.vue.d.ts +85 -0
- package/dist/src/components/DiffTextarea.vue.d.ts +21 -0
- package/dist/src/components/Dropdown.vue.d.ts +75 -0
- package/dist/src/components/EditFeaturedExcerptModal.vue.d.ts +161 -0
- package/dist/src/components/EmailCodeVerification.vue.d.ts +20 -0
- package/dist/src/components/InputField/BaseInput.vue.d.ts +46 -0
- package/dist/src/components/InputField/CardInput.vue.d.ts +77 -0
- package/dist/src/components/InputField/DefaultInput.vue.d.ts +39 -0
- package/dist/src/components/InputField/InputField.vue.d.ts +74 -0
- package/dist/src/components/InputField/PhoneInput.vue.d.ts +75 -0
- package/dist/src/components/InputField/index.d.ts +5 -0
- package/dist/src/components/Instructions/InstructionsModal.vue.d.ts +12 -0
- package/dist/src/components/Instructions/InstructiontextArea.vue.d.ts +11 -0
- package/dist/src/components/ModalOverlay.vue.d.ts +26 -0
- package/dist/src/components/ModelDropdown.vue.d.ts +23 -0
- package/dist/src/components/OutputModeModal.vue.d.ts +61 -0
- package/dist/src/components/Pagination.vue.d.ts +42 -0
- package/dist/src/components/SearchInput.vue.d.ts +26 -0
- package/dist/src/components/SendButton.vue.d.ts +7 -0
- package/dist/src/components/SimpleChatInterface.vue.d.ts +48 -0
- package/dist/src/components/SkeletonLoader.vue.d.ts +8 -0
- package/dist/src/components/Slider.vue.d.ts +19 -0
- package/dist/src/components/SnackBar.vue.d.ts +2 -0
- package/dist/src/components/Spinner.vue.d.ts +5 -0
- package/dist/src/components/Switch.vue.d.ts +11 -0
- package/dist/src/components/SwitchSlot.vue.d.ts +22 -0
- package/dist/src/components/TabList.vue.d.ts +9 -0
- package/dist/src/components/Tabs/BaseTabButton.vue.d.ts +12 -0
- package/dist/src/components/Tabs/index.d.ts +5 -0
- package/dist/src/components/TextAreaInputField.vue.d.ts +266 -0
- package/dist/src/components/ToastMessage.vue.d.ts +2 -0
- package/dist/src/components/Tooltip.vue.d.ts +32 -0
- package/dist/src/components/TooltipV2.vue.d.ts +41 -0
- package/dist/src/components/index.d.ts +50 -0
- package/dist/src/composables/index.d.ts +4 -0
- package/dist/src/composables/useErrorHandler.d.ts +46 -0
- package/dist/src/composables/usePerformance.d.ts +54 -0
- package/dist/src/composables/useTheme.d.ts +37 -0
- package/dist/src/config/api.config.d.ts +31 -0
- package/dist/src/config/colors/brands/contentplate.colors.d.ts +3 -0
- package/dist/src/config/colors/brands/flowplate.colors.d.ts +3 -0
- package/dist/src/config/colors/brands/freddy.colors.d.ts +3 -0
- package/dist/src/config/colors/color-system.d.ts +58 -0
- package/dist/src/config/colors/index.d.ts +12 -0
- package/dist/src/config/colors/types/color-system.types.d.ts +62 -0
- package/dist/src/config/colors/types/color.types.d.ts +99 -0
- package/dist/src/config/colors/utils/color.utils.d.ts +86 -0
- package/dist/src/config/environments.d.ts +11 -0
- package/dist/src/config/theme/freddy-default.d.ts +16 -0
- package/dist/src/config/theme/freddy-light.d.ts +14 -0
- package/dist/src/config/theme/global-theme-store.d.ts +128 -0
- package/dist/src/config/theme/themes.d.ts +12 -0
- package/dist/src/directives/frSanitize.d.ts +5 -0
- package/dist/src/directives/index.d.ts +1 -0
- package/dist/src/foundations/components/Logo.vue.d.ts +11 -0
- package/dist/src/foundations/components/index.d.ts +1 -0
- package/dist/src/foundations/index.d.ts +1 -0
- package/dist/src/helpers/BaseImageIcon.vue.d.ts +6 -0
- package/dist/src/helpers/api-response.helper.d.ts +100 -0
- package/dist/src/helpers/colors.helper.d.ts +8 -0
- package/dist/src/helpers/common.helper.d.ts +42 -0
- package/dist/src/helpers/date-format.helper.d.ts +34 -0
- package/dist/src/helpers/date.helper.d.ts +23 -0
- package/dist/src/helpers/fileName-handler.helper.d.ts +6 -0
- package/dist/src/helpers/index.d.ts +9 -0
- package/dist/src/helpers/percentageCalc.helper.d.ts +7 -0
- package/dist/src/helpers/validators.helper.d.ts +11 -0
- package/dist/src/icons/IconAddChatPop.vue.d.ts +2 -0
- package/dist/src/icons/IconAddFileSystem.vue.d.ts +2 -0
- package/dist/src/icons/IconAddPeople.vue.d.ts +2 -0
- package/dist/src/icons/IconAitronos.vue.d.ts +2 -0
- package/dist/src/icons/IconApple.vue.d.ts +2 -0
- package/dist/src/icons/IconApplePay.vue.d.ts +2 -0
- package/dist/src/icons/IconAppsGrid.vue.d.ts +2 -0
- package/dist/src/icons/IconArrowDown.vue.d.ts +2 -0
- package/dist/src/icons/IconArrowLeft.vue.d.ts +2 -0
- package/dist/src/icons/IconArrowUp.vue.d.ts +2 -0
- package/dist/src/icons/IconBadgeCheck.vue.d.ts +2 -0
- package/dist/src/icons/IconBroom.vue.d.ts +2 -0
- package/dist/src/icons/IconBuildings.vue.d.ts +2 -0
- package/dist/src/icons/IconCalendarWithTickInside.vue.d.ts +2 -0
- package/dist/src/icons/IconCallNotAllowed.vue.d.ts +2 -0
- package/dist/src/icons/IconCardPay.vue.d.ts +2 -0
- package/dist/src/icons/IconCaution.vue.d.ts +2 -0
- package/dist/src/icons/IconChangeLog.vue.d.ts +2 -0
- package/dist/src/icons/IconCheckCircleFill.vue.d.ts +2 -0
- package/dist/src/icons/IconCheckInCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconCheckRounded.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronDown.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronLeft.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronRight.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronUp.vue.d.ts +2 -0
- package/dist/src/icons/IconCircledCheck.vue.d.ts +2 -0
- package/dist/src/icons/IconClock.vue.d.ts +2 -0
- package/dist/src/icons/IconClosedEnvelope.vue.d.ts +2 -0
- package/dist/src/icons/IconCloudUpload.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorConfluence.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorFigma.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorFreshDesk.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorGitHub.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorJira.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorLinear.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorNotion.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorSlack.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorZapier.vue.d.ts +2 -0
- package/dist/src/icons/IconCopy.vue.d.ts +2 -0
- package/dist/src/icons/IconCross.vue.d.ts +2 -0
- package/dist/src/icons/IconCrossCircleFill.vue.d.ts +2 -0
- package/dist/src/icons/IconCrossInCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconCurrentTick.vue.d.ts +2 -0
- package/dist/src/icons/IconDataUpload.vue.d.ts +2 -0
- package/dist/src/icons/IconDelete.vue.d.ts +2 -0
- package/dist/src/icons/IconDeleteFillRed.vue.d.ts +2 -0
- package/dist/src/icons/IconDialingPhone.vue.d.ts +2 -0
- package/dist/src/icons/IconDisabledAlert.vue.d.ts +2 -0
- package/dist/src/icons/IconDocumentation.vue.d.ts +2 -0
- package/dist/src/icons/IconDownload.vue.d.ts +2 -0
- package/dist/src/icons/IconDribbble.vue.d.ts +2 -0
- package/dist/src/icons/IconDropdownArrow.vue.d.ts +2 -0
- package/dist/src/icons/IconEdit.vue.d.ts +2 -0
- package/dist/src/icons/IconEditLinePath.vue.d.ts +72 -0
- package/dist/src/icons/IconEllipse.vue.d.ts +2 -0
- package/dist/src/icons/IconExcelThumbnail.vue.d.ts +2 -0
- package/dist/src/icons/IconEye.vue.d.ts +2 -0
- package/dist/src/icons/IconFacebook.vue.d.ts +2 -0
- package/dist/src/icons/IconFigma.vue.d.ts +2 -0
- package/dist/src/icons/IconFile.vue.d.ts +2 -0
- package/dist/src/icons/IconFileSystem.vue.d.ts +2 -0
- package/dist/src/icons/IconFileUpload.vue.d.ts +2 -0
- package/dist/src/icons/IconFilter.vue.d.ts +2 -0
- package/dist/src/icons/IconFolder.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHub.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHubLogo.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHubNewLogo.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHubTitle.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddySmall.vue.d.ts +2 -0
- package/dist/src/icons/IconGlobExpand.vue.d.ts +2 -0
- package/dist/src/icons/IconGlobe.vue.d.ts +2 -0
- package/dist/src/icons/IconGoogle.vue.d.ts +2 -0
- package/dist/src/icons/IconHollowCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconHome.vue.d.ts +2 -0
- package/dist/src/icons/IconInfoRounded.vue.d.ts +2 -0
- package/dist/src/icons/IconInvalidInvoice.vue.d.ts +2 -0
- package/dist/src/icons/IconInvoice.vue.d.ts +2 -0
- package/dist/src/icons/IconInvoiceSwitch.vue.d.ts +2 -0
- package/dist/src/icons/IconLapTableBottom.vue.d.ts +2 -0
- package/dist/src/icons/IconLense.vue.d.ts +2 -0
- package/dist/src/icons/IconLightCross.vue.d.ts +2 -0
- package/dist/src/icons/IconLink04.vue.d.ts +2 -0
- package/dist/src/icons/IconLoadingError.vue.d.ts +2 -0
- package/dist/src/icons/IconLoadingOrg.vue.d.ts +2 -0
- package/dist/src/icons/IconLocationWithCircleIn.vue.d.ts +2 -0
- package/dist/src/icons/IconLock.vue.d.ts +2 -0
- package/dist/src/icons/IconMarketPlace.vue.d.ts +2 -0
- package/dist/src/icons/IconMaximize.vue.d.ts +2 -0
- package/dist/src/icons/IconMicrophone.vue.d.ts +2 -0
- package/dist/src/icons/IconMutedMicrophone.vue.d.ts +2 -0
- package/dist/src/icons/IconNewNotification.vue.d.ts +2 -0
- package/dist/src/icons/IconNewTab.vue.d.ts +2 -0
- package/dist/src/icons/IconNotification.vue.d.ts +2 -0
- package/dist/src/icons/IconOpenBook.vue.d.ts +2 -0
- package/dist/src/icons/IconPaperAirPlane.vue.d.ts +2 -0
- package/dist/src/icons/IconPauseCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconPdfThumbnail.vue.d.ts +2 -0
- package/dist/src/icons/IconPenEdit.vue.d.ts +2 -0
- package/dist/src/icons/IconPencil.vue.d.ts +2 -0
- package/dist/src/icons/IconPeopleHub.vue.d.ts +2 -0
- package/dist/src/icons/IconPersonCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconPits.vue.d.ts +2 -0
- package/dist/src/icons/IconPlay.vue.d.ts +2 -0
- package/dist/src/icons/IconPlus.vue.d.ts +2 -0
- package/dist/src/icons/IconPolygonDown.vue.d.ts +2 -0
- package/dist/src/icons/IconPresentation.vue.d.ts +2 -0
- package/dist/src/icons/IconProgressBase.vue.d.ts +2 -0
- package/dist/src/icons/IconProgressComplete.vue.d.ts +2 -0
- package/dist/src/icons/IconProgressGoing.vue.d.ts +2 -0
- package/dist/src/icons/IconPurpose.vue.d.ts +2 -0
- package/dist/src/icons/IconPurseCircleFill.vue.d.ts +2 -0
- package/dist/src/icons/IconQuestion.vue.d.ts +2 -0
- package/dist/src/icons/IconRadio.vue.d.ts +2 -0
- package/dist/src/icons/IconRadioFill.vue.d.ts +2 -0
- package/dist/src/icons/IconRefresh.vue.d.ts +2 -0
- package/dist/src/icons/IconRevertedTriangle.vue.d.ts +2 -0
- package/dist/src/icons/IconRobotScreen.vue.d.ts +2 -0
- package/dist/src/icons/IconRoundTick.vue.d.ts +2 -0
- package/dist/src/icons/IconSearch.vue.d.ts +2 -0
- package/dist/src/icons/IconSearchOptimised.vue.d.ts +2 -0
- package/dist/src/icons/IconSectionHide.vue.d.ts +2 -0
- package/dist/src/icons/IconSend.vue.d.ts +2 -0
- package/dist/src/icons/IconSettings.vue.d.ts +2 -0
- package/dist/src/icons/IconSettingsBold.vue.d.ts +2 -0
- package/dist/src/icons/IconSize.vue.d.ts +2 -0
- package/dist/src/icons/IconSliderKnobs.vue.d.ts +2 -0
- package/dist/src/icons/IconSortIdle.vue.d.ts +2 -0
- package/dist/src/icons/IconSparkle.vue.d.ts +2 -0
- package/dist/src/icons/IconSpotlio.vue.d.ts +2 -0
- package/dist/src/icons/IconStar.vue.d.ts +2 -0
- package/dist/src/icons/IconStatistics.vue.d.ts +2 -0
- package/dist/src/icons/IconStopChat.vue.d.ts +2 -0
- package/dist/src/icons/IconStreamLineHub.vue.d.ts +2 -0
- package/dist/src/icons/IconStreamLineHubNewLogo.vue.d.ts +2 -0
- package/dist/src/icons/IconSun.vue.d.ts +2 -0
- package/dist/src/icons/IconSwap.vue.d.ts +2 -0
- package/dist/src/icons/IconText.vue.d.ts +2 -0
- package/dist/src/icons/IconTextThumbnail.vue.d.ts +2 -0
- package/dist/src/icons/IconThinDocument.vue.d.ts +2 -0
- package/dist/src/icons/IconThinFile.vue.d.ts +2 -0
- package/dist/src/icons/IconThumbsDown.vue.d.ts +2 -0
- package/dist/src/icons/IconTick.vue.d.ts +2 -0
- package/dist/src/icons/IconUser.vue.d.ts +2 -0
- package/dist/src/icons/IconVerticalDots.vue.d.ts +2 -0
- package/dist/src/icons/IconVideoCamera.vue.d.ts +2 -0
- package/dist/src/icons/IconWarningOctal.vue.d.ts +2 -0
- package/dist/src/icons/IconX.vue.d.ts +2 -0
- package/dist/src/icons/IconZip.vue.d.ts +2 -0
- package/dist/src/icons/index.d.ts +148 -0
- package/dist/src/index.d.ts +23 -0
- package/dist/src/interfaces/assistant.interfaces.d.ts +237 -0
- package/dist/src/interfaces/base-button.interfaces.d.ts +119 -0
- package/dist/src/interfaces/color-comparison.interfaces.d.ts +71 -0
- package/dist/src/interfaces/index.d.ts +19 -0
- package/dist/src/interfaces/input-field.interfaces.d.ts +226 -0
- package/dist/src/interfaces/reference.d.ts +14 -0
- package/dist/src/interfaces/services/ai.interfaces.d.ts +56 -0
- package/dist/src/interfaces/services/api.interfaces.d.ts +46 -0
- package/dist/src/interfaces/services/auth.interfaces.d.ts +99 -0
- package/dist/src/interfaces/services/index.d.ts +7 -0
- package/dist/src/interfaces/skeleton-loader.interfaces.d.ts +1 -0
- package/dist/src/interfaces/slider.interfaces.d.ts +81 -0
- package/dist/src/interfaces/social-buttons.interfaces.d.ts +115 -0
- package/dist/src/interfaces/switch-slot.interfaces.d.ts +55 -0
- package/dist/src/interfaces/tab-button.interfaces.d.ts +23 -0
- package/dist/src/interfaces/tab-list.interfaces.d.ts +15 -0
- package/dist/src/interfaces/theme/index.d.ts +5 -0
- package/dist/src/interfaces/theme/theme.interfaces.d.ts +88 -0
- package/dist/src/interfaces/ui/chat.interfaces.d.ts +66 -0
- package/dist/src/interfaces/ui/editor.interfaces.d.ts +31 -0
- package/dist/src/interfaces/ui/feedback.interfaces.d.ts +39 -0
- package/dist/src/interfaces/ui/form.interfaces.d.ts +51 -0
- package/dist/src/interfaces/ui/index.d.ts +10 -0
- package/dist/src/interfaces/ui/modal.interfaces.d.ts +34 -0
- package/dist/src/interfaces/ui/navigation.interfaces.d.ts +31 -0
- package/dist/src/interfaces/utilities/common.interfaces.d.ts +59 -0
- package/dist/src/interfaces/utilities/index.d.ts +5 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/plugin.d.ts +5 -0
- package/dist/src/plugins/icon-style.d.ts +3 -0
- package/dist/src/plugins/index.d.ts +11 -0
- package/dist/src/services/AITextService.d.ts +68 -0
- package/dist/src/services/index.d.ts +15 -0
- package/dist/src/utility/confirmationModal.d.ts +2 -0
- package/dist/src/utility/index.d.ts +3 -0
- package/dist/src/utility/useSnackbar.d.ts +26 -0
- package/dist/src/utility/useToast.d.ts +19 -0
- package/package.json +1 -1
- package/dist/icons-4bzLozuJ.cjs +0 -2
- package/dist/icons-4bzLozuJ.cjs.map +0 -1
- 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
|
|
5
|
-
import { I as Je, _ as H, a as pe, b as
|
|
6
|
-
import { V as Pc, W as
|
|
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, ""),
|
|
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 =
|
|
80
|
+
y.innerHTML = Ae(m.value || "");
|
|
81
81
|
},
|
|
82
82
|
updated(y, m) {
|
|
83
|
-
y.innerHTML =
|
|
83
|
+
y.innerHTML = Ae(m.value || "");
|
|
84
84
|
}
|
|
85
85
|
}, Ul = {
|
|
86
86
|
install(y) {
|
|
87
|
-
var
|
|
87
|
+
var m;
|
|
88
88
|
y.directive("icon-style", Ne), y.directive("fr-sanitize", Re);
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
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:
|
|
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
|
-
}),
|
|
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
|
-
},
|
|
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",
|
|
324
|
-
a("div",
|
|
329
|
+
m.isVisible ? (c(), f("div", At, [
|
|
330
|
+
a("div", Dt, [
|
|
325
331
|
a("div", {
|
|
326
|
-
class:
|
|
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:
|
|
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 =
|
|
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
|
-
},
|
|
436
|
+
}, Yt = {
|
|
431
437
|
key: 2,
|
|
432
438
|
class: "freddy-assistants-header__side-icon"
|
|
433
|
-
},
|
|
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:
|
|
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",
|
|
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",
|
|
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(
|
|
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:
|
|
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
|
-
},
|
|
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 =
|
|
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" },
|
|
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 =
|
|
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(
|
|
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:
|
|
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",
|
|
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,
|
|
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 =
|
|
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:
|
|
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:
|
|
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:
|
|
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" },
|
|
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 =
|
|
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
|
-
|
|
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
|
-
[
|
|
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:
|
|
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,
|
|
1022
|
+
}, B(h.dependencies), 9, Yo)
|
|
1017
1023
|
]),
|
|
1018
|
-
a("td",
|
|
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:
|
|
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:
|
|
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 =
|
|
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:
|
|
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" },
|
|
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 =
|
|
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",
|
|
1259
|
-
a("div",
|
|
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 =
|
|
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" },
|
|
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:
|
|
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",
|
|
1390
|
-
a("div",
|
|
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 =
|
|
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:
|
|
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-
|
|
1496
|
-
IconUser: R(() => import("./icons-
|
|
1497
|
-
IconDelete: R(() => import("./icons-
|
|
1498
|
-
IconSend: R(() => import("./icons-
|
|
1499
|
-
IconPlus: R(() => import("./icons-
|
|
1500
|
-
IconEdit: R(() => import("./icons-
|
|
1501
|
-
IconCross: R(() => import("./icons-
|
|
1502
|
-
IconTick: R(() => import("./icons-
|
|
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-
|
|
1510
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cc)
|
|
1505
1511
|
),
|
|
1506
1512
|
IconArrowDown: R(
|
|
1507
|
-
() => import("./icons-
|
|
1513
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cb)
|
|
1508
1514
|
),
|
|
1509
|
-
IconArrowUp: R(() => import("./icons-
|
|
1515
|
+
IconArrowUp: R(() => import("./icons-Be1wtE70.js").then((v) => v.cd)),
|
|
1510
1516
|
IconChevronDown: R(
|
|
1511
|
-
() => import("./icons-
|
|
1517
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cp)
|
|
1512
1518
|
),
|
|
1513
1519
|
IconChevronUp: R(
|
|
1514
|
-
() => import("./icons-
|
|
1520
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cs)
|
|
1515
1521
|
),
|
|
1516
1522
|
IconChevronLeft: R(
|
|
1517
|
-
() => import("./icons-
|
|
1523
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cq)
|
|
1518
1524
|
),
|
|
1519
1525
|
IconChevronRight: R(
|
|
1520
|
-
() => import("./icons-
|
|
1526
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cr)
|
|
1521
1527
|
),
|
|
1522
1528
|
IconSettings: R(
|
|
1523
|
-
() => import("./icons-
|
|
1529
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.d$)
|
|
1524
1530
|
),
|
|
1525
|
-
IconHome: R(() => import("./icons-
|
|
1531
|
+
IconHome: R(() => import("./icons-Be1wtE70.js").then((v) => v.dd)),
|
|
1526
1532
|
IconDownload: R(
|
|
1527
|
-
() => import("./icons-
|
|
1533
|
+
() => import("./icons-Be1wtE70.js").then((v) => v.cR)
|
|
1528
1534
|
),
|
|
1529
|
-
IconRefresh: R(() => import("./icons-
|
|
1530
|
-
IconCopy: R(() => import("./icons-
|
|
1531
|
-
IconEye: R(() => import("./icons-
|
|
1532
|
-
IconLock: R(() => import("./icons-
|
|
1533
|
-
IconStar: R(() => import("./icons-
|
|
1534
|
-
IconFilter: R(() => import("./icons-
|
|
1535
|
-
IconFile: R(() => import("./icons-
|
|
1536
|
-
IconFolder: R(() => import("./icons-
|
|
1537
|
-
IconText: R(() => import("./icons-
|
|
1538
|
-
IconLink04: R(() => import("./icons-
|
|
1539
|
-
}, s = M(() => i.leftIcon && e[i.leftIcon] || null), l = M(() => i.rightIcon && e[i.rightIcon] || null), r = m, u =
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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"],
|
|
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 =
|
|
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: [
|
|
1874
|
+
themes: [De],
|
|
1869
1875
|
langs: r
|
|
1870
1876
|
})), i.value = e.codeToHtml(m.code, {
|
|
1871
1877
|
lang: m.language,
|
|
1872
|
-
theme:
|
|
1878
|
+
theme: De
|
|
1873
1879
|
});
|
|
1874
1880
|
} catch {
|
|
1875
1881
|
i.value = `<pre><code>${m.code.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">")}</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:
|
|
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
|
-
},
|
|
2254
|
+
}, As = {
|
|
2249
2255
|
key: 1,
|
|
2250
2256
|
class: "freddy-plugins-assistant-message-container"
|
|
2251
|
-
},
|
|
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" },
|
|
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 =
|
|
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:
|
|
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",
|
|
2453
|
-
a("div",
|
|
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",
|
|
2520
|
+
a("button", Ys, [
|
|
2515
2521
|
L(F(vt), { class: "freddy-plugins-folder-icon" })
|
|
2516
2522
|
]),
|
|
2517
|
-
|
|
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,
|
|
2530
|
-
[
|
|
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 =
|
|
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:
|
|
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
|
-
|
|
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
|
-
[
|
|
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 =
|
|
2752
|
+
const e = y, s = i, l = A(null), r = A(
|
|
2747
2753
|
null
|
|
2748
|
-
), u =
|
|
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:
|
|
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) :
|
|
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:
|
|
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
|
-
[
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
-
}),
|
|
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 =
|
|
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(
|
|
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(
|
|
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 =
|
|
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)) :
|
|
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
|
-
[
|
|
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:
|
|
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 =
|
|
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:
|
|
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
|
-
|
|
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
|
-
[
|
|
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:
|
|
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"],
|
|
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 =
|
|
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:
|
|
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) =>
|
|
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:
|
|
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
|
-
[
|
|
3408
|
+
[Q, d.value[p]]
|
|
3403
3409
|
])), 64))
|
|
3404
3410
|
])
|
|
3405
3411
|
]),
|
|
3406
|
-
a("div",
|
|
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:
|
|
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",
|
|
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:
|
|
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:
|
|
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:
|
|
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 =
|
|
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:
|
|
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
|
-
|
|
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:
|
|
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
|
-
[
|
|
3651
|
+
[Q, d.value]
|
|
3646
3652
|
]),
|
|
3647
3653
|
P.value ? (c(), E(K(P.value), {
|
|
3648
3654
|
key: 1,
|
|
3649
|
-
class:
|
|
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 =
|
|
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:
|
|
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
|
-
|
|
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:
|
|
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:
|
|
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:
|
|
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 =
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
3926
|
+
class: D(["freddy-plugins-figma-text-input", `freddy-plugins-figma-text-input--${t.colorStyle}`])
|
|
3921
3927
|
}, [
|
|
3922
|
-
|
|
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
|
-
[
|
|
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:
|
|
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
|
|
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(
|
|
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
|
-
}),
|
|
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,
|
|
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:
|
|
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:
|
|
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 =
|
|
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:
|
|
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
|
-
|
|
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
|
-
[
|
|
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 =
|
|
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:
|
|
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:
|
|
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" },
|
|
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:
|
|
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:
|
|
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,
|
|
4506
|
+
}, B(o), 11, Ya))), 128)),
|
|
4501
4507
|
a("button", {
|
|
4502
|
-
class:
|
|
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,
|
|
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:
|
|
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 =
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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"]]),
|
|
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 =
|
|
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",
|
|
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:
|
|
4906
|
+
class: D({ "freddy-plugin-active-tab": s.value === d.id })
|
|
4901
4907
|
}, null, 2)
|
|
4902
|
-
], 8,
|
|
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:
|
|
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 =
|
|
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:
|
|
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 =
|
|
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 =
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
5208
|
-
|
|
5214
|
+
Bc as IconAddPeople,
|
|
5215
|
+
Fc as IconAitronos,
|
|
5209
5216
|
dt as IconApple,
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
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
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
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
|
-
|
|
5227
|
-
|
|
5234
|
+
Zc as IconChevronLeft,
|
|
5235
|
+
Wc as IconChevronRight,
|
|
5228
5236
|
Ve as IconChevronUp,
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
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
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
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
|
-
|
|
5263
|
+
yr as IconDropdownArrow,
|
|
5256
5264
|
pe as IconEdit,
|
|
5257
5265
|
kt as IconEditLinePath,
|
|
5258
|
-
|
|
5259
|
-
|
|
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
|
-
|
|
5273
|
+
br as IconFileUpload,
|
|
5266
5274
|
st as IconFilter,
|
|
5267
5275
|
vt as IconFolder,
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
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
|
-
|
|
5277
|
-
|
|
5284
|
+
xr as IconHollowCircle,
|
|
5285
|
+
Pr as IconHome,
|
|
5278
5286
|
re as IconInfoRounded,
|
|
5279
|
-
|
|
5280
|
-
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
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
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
5293
|
+
Lr as IconLink04,
|
|
5294
|
+
Vr as IconLoadingError,
|
|
5295
|
+
Er as IconLoadingOrg,
|
|
5296
|
+
Nr as IconLocationWithCircleIn,
|
|
5289
5297
|
Je as IconLock,
|
|
5290
|
-
|
|
5298
|
+
Rr as IconMarketPlace,
|
|
5291
5299
|
Ct as IconMaximize,
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
|
|
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
|
-
|
|
5300
|
-
|
|
5301
|
-
|
|
5302
|
-
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
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
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
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
|
-
|
|
5317
|
-
|
|
5324
|
+
ad as IconRadio,
|
|
5325
|
+
ld as IconRadioFill,
|
|
5318
5326
|
ft as IconRefresh,
|
|
5319
5327
|
at as IconRevertedTriangle,
|
|
5320
5328
|
Fe as IconRobotScreen,
|
|
5321
|
-
|
|
5329
|
+
cd as IconRoundTick,
|
|
5322
5330
|
Me as IconSearch,
|
|
5323
|
-
|
|
5331
|
+
rd as IconSearchOptimised,
|
|
5324
5332
|
_t as IconSectionHide,
|
|
5325
5333
|
wt as IconSend,
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
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
|
-
|
|
5340
|
+
md as IconSpotlio,
|
|
5333
5341
|
ot as IconStar,
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5342
|
+
vd as IconStatistics,
|
|
5343
|
+
yd as IconStopChat,
|
|
5344
|
+
gd as IconStreamLineHub,
|
|
5345
|
+
Id as IconStreamLineHubNewLogo,
|
|
5338
5346
|
Ne as IconStyleDirective,
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
|
|
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
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5355
|
+
Td as IconUser,
|
|
5356
|
+
$d as IconVerticalDots,
|
|
5357
|
+
xd as IconVideoCamera,
|
|
5358
|
+
Pd as IconWarningOctal,
|
|
5351
5359
|
rt as IconX,
|
|
5352
|
-
|
|
5360
|
+
Ad as IconZip,
|
|
5353
5361
|
dc as InputField,
|
|
5354
5362
|
uc as InstructionsModal,
|
|
5355
5363
|
pc as InstructiontextArea,
|
|
5356
|
-
|
|
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
|
-
|
|
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
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5390
|
+
Dd as aiResponseToChatMessage,
|
|
5391
|
+
Bd as calculatePercentage,
|
|
5392
|
+
Fd as cloneDeepSafe,
|
|
5393
|
+
Md as copyToClipboard,
|
|
5386
5394
|
bt as createChangesObject,
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5395
|
+
Ld as daysInMonth,
|
|
5396
|
+
Vd as debounce,
|
|
5397
|
+
Ed as deepEqual,
|
|
5390
5398
|
Ul as default,
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
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
|
-
|
|
5400
|
-
|
|
5407
|
+
Kd as getDatesForMonth,
|
|
5408
|
+
Gd as getDaysInMonth,
|
|
5401
5409
|
It as getDisplayContent,
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5410
|
+
Zd as getFileNameFromUrl,
|
|
5411
|
+
Wd as getShortMonthName,
|
|
5412
|
+
qd as hasOverflow,
|
|
5413
|
+
Jd as hasTextImprovements,
|
|
5406
5414
|
Gl as iconStylePlugin,
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
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
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
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,
|