@feedmepos/mf-miniprogram-v2 0.1.0-dev.4 → 0.1.0-dev.40
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/ControlPlaneView-DcNJs7QW.js +19228 -0
- package/dist/app.js +1 -1
- package/dist/package.json +4 -2
- package/dist/src/api/controlPlane.d.ts +3 -1
- package/dist/src/components/AnnotationColorField.vue.d.ts +14 -0
- package/dist/src/components/AnnotationMessage.vue.d.ts +8 -0
- package/dist/src/components/AnnotationPropertyPanel.vue.d.ts +32 -0
- package/dist/src/components/AnnotationStyleControl.vue.d.ts +14 -0
- package/dist/src/components/BrandKitPanel.vue.d.ts +9 -0
- package/dist/src/components/BrandKitProposalCard.vue.d.ts +7 -0
- package/dist/src/components/ChatTextPart.vue.d.ts +6 -0
- package/dist/src/components/DiffCard.vue.d.ts +9 -0
- package/dist/src/components/MarkdownContent.vue.d.ts +6 -0
- package/dist/src/components/MessageItem.vue.d.ts +7 -1
- package/dist/src/components/QuestionPrompt.vue.d.ts +16 -0
- package/dist/src/components/StatusBadge.vue.d.ts +21 -0
- package/dist/src/components/ToolCallGroup.vue.d.ts +11 -0
- package/dist/src/composables/annotationEditing.d.ts +130 -0
- package/dist/src/composables/annotationTray.d.ts +73 -0
- package/dist/src/composables/brandkitProposal.d.ts +14 -0
- package/dist/src/composables/imageAttachments.d.ts +23 -0
- package/dist/src/composables/latestPoller.d.ts +14 -0
- package/dist/src/composables/localPreference.d.ts +10 -0
- package/dist/src/composables/previewAnnotations.d.ts +38 -0
- package/dist/src/composables/promptQueue.d.ts +20 -0
- package/dist/src/composables/questionAnswers.d.ts +4 -0
- package/dist/src/composables/status.d.ts +11 -0
- package/dist/src/composables/types.d.ts +109 -4
- package/dist/src/composables/useAgentBridge.d.ts +35 -0
- package/dist/src/composables/useBrandKit.d.ts +45 -0
- package/dist/src/composables/useChat.d.ts +181 -2
- package/dist/src/composables/useIdleSuspend.d.ts +6 -0
- package/dist/src/composables/useProject.d.ts +108 -26
- package/dist/style.css +1 -1
- package/package.json +4 -2
- package/dist/ControlPlaneView-CYpEC-C4.js +0 -9487
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmepos/mf-miniprogram-v2",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.40",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"build": "npm run type-check && npm run build-only:dev",
|
|
24
24
|
"build:prod": "npm run type-check && npm run build-only:prod",
|
|
25
25
|
"preview": "vite preview",
|
|
26
|
+
"test": "node --test src/components/*.test.mjs src/composables/*.test.mjs",
|
|
26
27
|
"type-check": "vue-tsc --build --force",
|
|
27
28
|
"typecheck": "npm run type-check",
|
|
28
29
|
"build:mf:dev": "vite build --mode fmmf:dev",
|
|
@@ -38,7 +39,8 @@
|
|
|
38
39
|
"dependencies": {
|
|
39
40
|
"@feedmepos/mf-common": "^1.27.9",
|
|
40
41
|
"@feedmepos/ui-library": "1.8.4",
|
|
41
|
-
"@opencode-ai/sdk": "
|
|
42
|
+
"@opencode-ai/sdk": "1.17.14",
|
|
43
|
+
"diff": "^9.0.0",
|
|
42
44
|
"dompurify": "^3.4.11",
|
|
43
45
|
"highlight.js": "^11.11.1",
|
|
44
46
|
"marked": "^18.0.5",
|