@deep-eye/core 1.2.60 → 1.2.64
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 +44 -0
- package/README.md +1 -1
- package/dist/components/chat/ChatBot.vue.d.ts +2 -2
- package/dist/components/chat/askUser.d.ts +81 -0
- package/dist/components/chat/askUser.d.ts.map +1 -0
- package/dist/components/chat/assistantDisplay.d.ts +6 -0
- package/dist/components/chat/assistantDisplay.d.ts.map +1 -1
- package/dist/components/chat/components/ChatMessage.vue.d.ts +2 -2
- package/dist/components/chat/components/ChatToolGroup.vue.d.ts +6 -0
- package/dist/components/chat/components/ChatToolGroup.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ConversationList.vue.d.ts +8 -7
- package/dist/components/chat/components/ConversationList.vue.d.ts.map +1 -1
- package/dist/components/chat/components/MessageBubble.vue.d.ts +2 -2
- package/dist/components/chat/components/MessageBubble.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ToolCallPart.vue.d.ts.map +1 -1
- package/dist/components/chat/formatToolArguments.d.ts +9 -5
- package/dist/components/chat/formatToolArguments.d.ts.map +1 -1
- package/dist/components/chat/index.d.ts +2 -2
- package/dist/components/chat/index.d.ts.map +1 -1
- package/dist/components/chat/mdoc/AskUserForm.vue.d.ts +4 -9
- package/dist/components/chat/mdoc/AskUserForm.vue.d.ts.map +1 -1
- package/dist/components/chat/mdoc/builtInRegistry.d.ts +4 -3
- package/dist/components/chat/mdoc/builtInRegistry.d.ts.map +1 -1
- package/dist/components/chat/mdoc/extractAskForms.d.ts +3 -20
- package/dist/components/chat/mdoc/extractAskForms.d.ts.map +1 -1
- package/dist/components/chat/mdoc/index.d.ts +2 -2
- package/dist/components/chat/mdoc/index.d.ts.map +1 -1
- package/dist/components/chat/responseStream.d.ts.map +1 -1
- package/dist/components/chat/types.d.ts +14 -16
- package/dist/components/chat/types.d.ts.map +1 -1
- package/dist/index.cjs +114 -110
- package/dist/index.js +13935 -13811
- package/dist/style.css +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deep-eye/core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.64",
|
|
4
4
|
"publishConfig": {
|
|
5
|
-
"access": "public"
|
|
6
|
-
"registry": "https://registry.npmjs.org/"
|
|
5
|
+
"access": "public"
|
|
7
6
|
},
|
|
8
7
|
"description": "深瞳前端团队企业级 Vue 3 组件库 | Enterprise Vue 3 component library for DeepTong frontend team",
|
|
9
8
|
"type": "module",
|
|
@@ -27,7 +26,10 @@
|
|
|
27
26
|
"dev": "vite build --watch",
|
|
28
27
|
"build": "vite build && pnpm build:types",
|
|
29
28
|
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist --skipLibCheck",
|
|
30
|
-
"typecheck": "vue-tsc --noEmit"
|
|
29
|
+
"typecheck": "vue-tsc --noEmit",
|
|
30
|
+
"publish:npm": "npm publish --registry=https://registry.npmjs.org/ --@deep-eye:registry=https://registry.npmjs.org/",
|
|
31
|
+
"publish:nexus": "npm publish --registry=https://nexus.yxuer.com/repository/npm-host/ --@deep-eye:registry=https://nexus.yxuer.com/repository/npm-host/",
|
|
32
|
+
"publish:all": "node ../../scripts/publish-dual.mjs"
|
|
31
33
|
},
|
|
32
34
|
"keywords": [
|
|
33
35
|
"vue",
|