@deep-eye/core 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chat-token.css +226 -0
- package/dist/components/chat/ChatApp.vue.d.ts +199 -0
- package/dist/components/chat/ChatApp.vue.d.ts.map +1 -0
- package/dist/components/chat/ChatBot.vue.d.ts +12 -1
- package/dist/components/chat/ChatBot.vue.d.ts.map +1 -1
- package/dist/components/chat/attachments.d.ts +3 -1
- package/dist/components/chat/attachments.d.ts.map +1 -1
- package/dist/components/chat/chatContext.d.ts +3 -2
- package/dist/components/chat/chatContext.d.ts.map +1 -1
- package/dist/components/chat/chatSessionSidebarAssets.d.ts +21 -0
- package/dist/components/chat/chatSessionSidebarAssets.d.ts.map +1 -0
- package/dist/components/chat/chatSessionSidebarTypes.d.ts +67 -0
- package/dist/components/chat/chatSessionSidebarTypes.d.ts.map +1 -0
- package/dist/components/chat/cloudConfig.d.ts +94 -0
- package/dist/components/chat/cloudConfig.d.ts.map +1 -0
- package/dist/components/chat/components/ArtifactList.vue.d.ts +14 -0
- package/dist/components/chat/components/ArtifactList.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatHistorySearchDialog.vue.d.ts +37 -0
- package/dist/components/chat/components/ChatHistorySearchDialog.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatProvider.vue.d.ts +10 -7
- package/dist/components/chat/components/ChatProvider.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatSender.vue.d.ts +15 -3
- package/dist/components/chat/components/ChatSender.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatSessionExpandHistoryCard.vue.d.ts +34 -0
- package/dist/components/chat/components/ChatSessionExpandHistoryCard.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionHistoryItem.vue.d.ts +21 -0
- package/dist/components/chat/components/ChatSessionHistoryItem.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionLoadingDots.vue.d.ts +11 -0
- package/dist/components/chat/components/ChatSessionLoadingDots.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionOverflowTooltip.vue.d.ts +22 -0
- package/dist/components/chat/components/ChatSessionOverflowTooltip.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionSidebar.vue.d.ts +84 -0
- package/dist/components/chat/components/ChatSessionSidebar.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionSkeleton.vue.d.ts +6 -0
- package/dist/components/chat/components/ChatSessionSkeleton.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionStatusMark.vue.d.ts +15 -0
- package/dist/components/chat/components/ChatSessionStatusMark.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSkillPanel.vue.d.ts +2 -2
- package/dist/components/chat/components/ChatSkillPanel.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ConversationList.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/html/HtmlRenderer.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts +3 -2
- package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts.map +1 -1
- package/dist/components/chat/components/index.d.ts +3 -0
- package/dist/components/chat/components/index.d.ts.map +1 -1
- package/dist/components/chat/composables/chatApiRequest.d.ts +39 -0
- package/dist/components/chat/composables/chatApiRequest.d.ts.map +1 -0
- package/dist/components/chat/composables/chatHistoryApi.d.ts +45 -0
- package/dist/components/chat/composables/chatHistoryApi.d.ts.map +1 -0
- package/dist/components/chat/composables/chatSessionId.d.ts +8 -0
- package/dist/components/chat/composables/chatSessionId.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatNewSessionEpoch.d.ts +3 -0
- package/dist/components/chat/composables/useChatNewSessionEpoch.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatSessionHistory.d.ts +58 -0
- package/dist/components/chat/composables/useChatSessionHistory.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatSessionSwitch.d.ts +22 -0
- package/dist/components/chat/composables/useChatSessionSwitch.d.ts.map +1 -0
- package/dist/components/chat/composables/useHistoryGroupExpand.d.ts +14 -0
- package/dist/components/chat/composables/useHistoryGroupExpand.d.ts.map +1 -0
- package/dist/components/chat/harness/Tooltip.vue.d.ts +1 -1
- package/dist/components/chat/harness/Tooltip.vue.d.ts.map +1 -1
- package/dist/components/chat/htmlPreview.d.ts +13 -0
- package/dist/components/chat/htmlPreview.d.ts.map +1 -1
- package/dist/components/chat/icons/{ChatTipMenuLucideIcon.vue.d.ts → ChatArtifactFilesIcon.vue.d.ts} +1 -3
- package/dist/components/chat/icons/ChatArtifactFilesIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/ChatTipMenuAssetIcon.vue.d.ts +10 -0
- package/dist/components/chat/icons/ChatTipMenuAssetIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/ChatTipMenuExpertIcon.vue.d.ts +1 -3
- package/dist/components/chat/icons/ChatTipMenuExpertIcon.vue.d.ts.map +1 -1
- package/dist/components/chat/icons/index.d.ts +1 -0
- package/dist/components/chat/icons/index.d.ts.map +1 -1
- package/dist/components/chat/icons/tipMenuItemIcons.d.ts +1 -3
- package/dist/components/chat/icons/tipMenuItemIcons.d.ts.map +1 -1
- package/dist/components/chat/index.d.ts +14 -2
- package/dist/components/chat/index.d.ts.map +1 -1
- package/dist/components/chat/mdoc/ArtifactBlock.vue.d.ts +4 -1
- package/dist/components/chat/mdoc/ArtifactBlock.vue.d.ts.map +1 -1
- package/dist/components/chat/mdoc/ArtifactStack.vue.d.ts +13 -0
- package/dist/components/chat/mdoc/ArtifactStack.vue.d.ts.map +1 -0
- package/dist/components/chat/mdoc/ContentNodes.vue.d.ts.map +1 -1
- package/dist/components/chat/mdoc/artifactOpenStrategy.d.ts +1 -1
- package/dist/components/chat/mdoc/artifactOpenStrategy.d.ts.map +1 -1
- package/dist/components/chat/mdoc/artifactStack.d.ts +17 -0
- package/dist/components/chat/mdoc/artifactStack.d.ts.map +1 -0
- package/dist/components/chat/mdoc/index.d.ts +2 -0
- package/dist/components/chat/mdoc/index.d.ts.map +1 -1
- package/dist/components/chat/mdoc/sessionArtifacts.d.ts +20 -0
- package/dist/components/chat/mdoc/sessionArtifacts.d.ts.map +1 -0
- package/dist/components/chat/mentionEditor.d.ts +7 -2
- package/dist/components/chat/mentionEditor.d.ts.map +1 -1
- package/dist/components/chat/sidebarMotion.d.ts +5 -0
- package/dist/components/chat/sidebarMotion.d.ts.map +1 -1
- package/dist/components/chat/types.d.ts +134 -9
- package/dist/components/chat/types.d.ts.map +1 -1
- package/dist/components/skill/api/skillCloudUrl.d.ts.map +1 -1
- package/dist/components/skill/components/ChatSkillCard.vue.d.ts.map +1 -1
- package/dist/components/skill/components/ChatSkillCardSkeleton.vue.d.ts.map +1 -1
- package/dist/components/skill/components/ChatSkillDetailDialog.vue.d.ts.map +1 -1
- package/dist/components/skill/composables/useChatSkills.d.ts.map +1 -1
- package/dist/components/skill/formatSkillUsageCount.d.ts +3 -0
- package/dist/components/skill/formatSkillUsageCount.d.ts.map +1 -0
- package/dist/components/skill/skillCardModel.d.ts.map +1 -1
- package/dist/components/skill/skillTabs.d.ts +5 -0
- package/dist/components/skill/skillTabs.d.ts.map +1 -0
- package/dist/components/skill/types.d.ts +2 -0
- package/dist/components/skill/types.d.ts.map +1 -1
- package/dist/components/ui/components/UiDialog.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiDropdown.vue.d.ts +8 -4
- package/dist/components/ui/components/UiDropdown.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenu.vue.d.ts +9 -3
- package/dist/components/ui/components/UiMenu.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenuColumn.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenuNestedSubmenu.vue.d.ts +6 -0
- package/dist/components/ui/components/UiMenuNestedSubmenu.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenuSubmenuList.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiSearchInput.vue.d.ts +5 -1
- package/dist/components/ui/components/UiSearchInput.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiTabs.vue.d.ts.map +1 -1
- package/dist/components/ui/composables/floatingPosition.d.ts +3 -1
- package/dist/components/ui/composables/floatingPosition.d.ts.map +1 -1
- package/dist/components/ui/composables/index.d.ts +1 -1
- package/dist/components/ui/composables/index.d.ts.map +1 -1
- package/dist/components/ui/composables/useUiDropdown.d.ts +12 -2
- package/dist/components/ui/composables/useUiDropdown.d.ts.map +1 -1
- package/dist/components/ui/composables/useUiMenuFloating.d.ts +5 -2
- package/dist/components/ui/composables/useUiMenuFloating.d.ts.map +1 -1
- package/dist/components/ui/types.d.ts +34 -6
- package/dist/components/ui/types.d.ts.map +1 -1
- package/dist/components/ui/utils/index.d.ts +1 -1
- package/dist/components/ui/utils/index.d.ts.map +1 -1
- package/dist/components/ui/utils/mapDropdownMenuItems.d.ts +6 -1
- package/dist/components/ui/utils/mapDropdownMenuItems.d.ts.map +1 -1
- package/dist/components/ui/utils/menuSubmenu.d.ts +3 -1
- package/dist/components/ui/utils/menuSubmenu.d.ts.map +1 -1
- package/dist/{index-GDdWx_nR.cjs → index-BB7-JTQ1.cjs} +1 -1
- package/dist/{index-B9m5lEtT.cjs → index-BEat1win.cjs} +224 -220
- package/dist/{index-DZFa6Oqy.js → index-Bz2Crv7F.js} +1 -1
- package/dist/{index-oK2gNaio.js → index-DI2r7Of4.js} +1 -1
- package/dist/{index-zKQpqRx4.cjs → index-DeZLQiGl.cjs} +1 -1
- package/dist/{index-B1l7WLyd.js → index-x18YuBk_.js} +38327 -34818
- package/dist/index.cjs +1 -1
- package/dist/index.js +328 -276
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/dist/components/chat/icons/ChatTipMenuLucideIcon.vue.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";const Ye=require("./index-
|
|
1
|
+
"use strict";const Ye=require("./index-BEat1win.cjs"),Pn=require("./index-Bh4xn5LB.cjs"),An=require("vue");function En(Ie,Qe){for(var Pe=0;Pe<Qe.length;Pe++){const we=Qe[Pe];if(typeof we!="string"&&!Array.isArray(we)){for(const Te in we)if(Te!=="default"&&!(Te in Ie)){const Me=Object.getOwnPropertyDescriptor(we,Te);Me&&Object.defineProperty(Ie,Te,Me.get?Me:{enumerable:!0,get:()=>we[Te]})}}}return Object.freeze(Object.defineProperty(Ie,Symbol.toStringTag,{value:"Module"}))}var Mt={exports:{}};(function(Ie,Qe){(function(Pe,we){Ie.exports=we(Pn.requireLib(),An)})(Ye.commonjsGlobal,function(Pe,we){var Te=Object.defineProperty,Me=Object.defineProperties,Ot=Object.getOwnPropertyDescriptors,ot=Object.getOwnPropertySymbols,Ft=Object.prototype.hasOwnProperty,Lt=Object.prototype.propertyIsEnumerable,lt=(i,t,e)=>t in i?Te(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e,ye=(i,t)=>{for(var e in t||(t={}))Ft.call(t,e)&<(i,e,t[e]);if(ot)for(var e of ot(t))Lt.call(t,e)&<(i,e,t[e]);return i},$e=(i,t)=>Me(i,Ot(t)),ve=(i,t,e)=>new Promise((r,n)=>{var a=u=>{try{o(e.next(u))}catch(m){n(m)}},l=u=>{try{o(e.throw(u))}catch(m){n(m)}},o=u=>u.done?r(u.value):Promise.resolve(u.value).then(a,l);o((e=e.apply(i,t)).next())});typeof window.setImmediate>"u"&&(window.setImmediate=function(i,...t){setTimeout(()=>i(t))});var He=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof Ye.commonjsGlobal<"u"?Ye.commonjsGlobal:typeof self<"u"?self:{};function jt(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}function We(i){throw new Error('Could not dynamically require "'+i+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var ct={exports:{}};/*!
|
|
2
2
|
|
|
3
3
|
JSZip v3.10.1 - A JavaScript class for generating and reading zip files
|
|
4
4
|
<http://stuartk.com/jszip>
|