@polpo-ai/dashboard 0.1.0 → 0.1.2
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/app/(dashboard)/layout.tsx +6 -6
- package/app/(dashboard)/projects/[id]/agents/[name]/memory/view.tsx +3 -3
- package/app/(dashboard)/projects/[id]/agents/[name]/models-view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/agents/[name]/page.tsx +3 -3
- package/app/(dashboard)/projects/[id]/agents/[name]/prompt/view.tsx +4 -4
- package/app/(dashboard)/projects/[id]/agents/[name]/skills/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/agents/[name]/tools/view.tsx +2 -2
- package/app/(dashboard)/projects/[id]/agents/[name]/vault/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/agents/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/agents/view.tsx +2 -2
- package/app/(dashboard)/projects/[id]/logs/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/logs/view.tsx +3 -3
- package/app/(dashboard)/projects/[id]/memory/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/memory/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/missions/[missionId]/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/missions/[missionId]/view.tsx +3 -3
- package/app/(dashboard)/projects/[id]/missions/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/missions/view.tsx +5 -5
- package/app/(dashboard)/projects/[id]/onboarding-checklist.tsx +3 -3
- package/app/(dashboard)/projects/[id]/page.tsx +3 -3
- package/app/(dashboard)/projects/[id]/playbooks/[name]/view.tsx +4 -4
- package/app/(dashboard)/projects/[id]/playbooks/view.tsx +2 -2
- package/app/(dashboard)/projects/[id]/schedules/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/schedules/view.tsx +2 -2
- package/app/(dashboard)/projects/[id]/sessions/[sessionId]/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/sessions/[sessionId]/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/sessions/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/sessions/view.tsx +5 -5
- package/app/(dashboard)/projects/[id]/settings/page.tsx +4 -4
- package/app/(dashboard)/projects/[id]/skills/[name]/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/skills/[name]/view.tsx +4 -4
- package/app/(dashboard)/projects/[id]/skills/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/skills/view.tsx +4 -4
- package/app/(dashboard)/projects/[id]/storage/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/tasks/[taskId]/activity/view.tsx +2 -2
- package/app/(dashboard)/projects/[id]/tasks/[taskId]/assessment/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/tasks/[taskId]/blueprint.ts +1 -1
- package/app/(dashboard)/projects/[id]/tasks/[taskId]/output/view.tsx +2 -2
- package/app/(dashboard)/projects/[id]/tasks/[taskId]/page.tsx +3 -3
- package/app/(dashboard)/projects/[id]/tasks/[taskId]/view.tsx +1 -1
- package/app/(dashboard)/projects/[id]/tasks/page.tsx +2 -2
- package/app/(dashboard)/projects/[id]/tasks/view.tsx +5 -5
- package/app/(dashboard)/projects/[id]/view.tsx +4 -4
- package/app/(dashboard)/projects/[id]/welcome-banner.tsx +2 -2
- package/app/(dashboard)/projects/projects-list.tsx +1 -1
- package/app/(playground)/layout.tsx +2 -2
- package/app/(playground)/projects/[id]/playground/page.tsx +2 -2
- package/app/(playground)/projects/[id]/playground/view.tsx +2 -2
- package/app/(playground)/projects/[id]/playground-legacy/page.tsx +2 -2
- package/app/(playground)/projects/[id]/playground-legacy/skeleton.tsx +1 -1
- package/app/(playground)/projects/[id]/playground-legacy/view.tsx +1 -1
- package/components/ai-elements/code-block.tsx +3 -3
- package/components/dashboard/agent-picker-card.tsx +1 -1
- package/components/dashboard/agent-studio.tsx +10 -10
- package/components/dashboard/builder-chat.tsx +2 -2
- package/components/dashboard/client-picker.tsx +2 -2
- package/components/dashboard/connect-dialog.tsx +8 -8
- package/components/dashboard/file-browser.tsx +1 -1
- package/components/dashboard/markdown.tsx +1 -1
- package/components/dashboard/mcp-install-panel.tsx +2 -2
- package/components/dashboard/polpo-chat.tsx +2 -2
- package/components/dashboard/project-copilot.tsx +3 -3
- package/components/dashboard/sdk-snippet-panel.tsx +4 -4
- package/components/dashboard/settings-form.tsx +9 -9
- package/components/dashboard/sidebar.tsx +6 -6
- package/components/dashboard/skeletons.tsx +1 -1
- package/components/dashboard/skills-install-wizard.tsx +2 -2
- package/components/dashboard/task-studio.tsx +7 -7
- package/components/dashboard/top-header.tsx +2 -2
- package/components/dashboard/webhook-deliveries.tsx +1 -1
- package/components/providers.tsx +1 -1
- package/components/ui/badge.tsx +1 -1
- package/components/ui/button.tsx +1 -1
- package/components/ui/card.tsx +1 -1
- package/components/ui/chart.tsx +1 -1
- package/components/ui/command.tsx +3 -3
- package/components/ui/dialog.tsx +2 -2
- package/components/ui/input-group.tsx +4 -4
- package/components/ui/input.tsx +1 -1
- package/components/ui/multi-select.tsx +2 -2
- package/components/ui/popover.tsx +1 -1
- package/components/ui/select.tsx +1 -1
- package/components/ui/separator.tsx +1 -1
- package/components/ui/sheet.tsx +2 -2
- package/components/ui/skeleton.tsx +1 -1
- package/components/ui/tabs.tsx +1 -1
- package/components/ui/textarea.tsx +1 -1
- package/components/ui/tooltip.tsx +1 -1
- package/package.json +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polpo-ai/dashboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,9 +12,6 @@
|
|
|
12
12
|
"hooks",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
|
-
"imports": {
|
|
16
|
-
"#/*": "./*"
|
|
17
|
-
},
|
|
18
15
|
"exports": {
|
|
19
16
|
".": "./index.ts"
|
|
20
17
|
},
|
|
@@ -73,8 +70,8 @@
|
|
|
73
70
|
"tailwind-merge": "^3.5.0",
|
|
74
71
|
"tw-animate-css": "^1.4.0",
|
|
75
72
|
"@polpo-ai/core": "0.7.18",
|
|
76
|
-
"@polpo-ai/
|
|
77
|
-
"@polpo-ai/
|
|
73
|
+
"@polpo-ai/sdk": "0.7.18",
|
|
74
|
+
"@polpo-ai/react": "0.7.18"
|
|
78
75
|
},
|
|
79
76
|
"devDependencies": {
|
|
80
77
|
"@playwright/test": "^1.58.2",
|