@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.
Files changed (89) hide show
  1. package/app/(dashboard)/layout.tsx +6 -6
  2. package/app/(dashboard)/projects/[id]/agents/[name]/memory/view.tsx +3 -3
  3. package/app/(dashboard)/projects/[id]/agents/[name]/models-view.tsx +1 -1
  4. package/app/(dashboard)/projects/[id]/agents/[name]/page.tsx +3 -3
  5. package/app/(dashboard)/projects/[id]/agents/[name]/prompt/view.tsx +4 -4
  6. package/app/(dashboard)/projects/[id]/agents/[name]/skills/view.tsx +1 -1
  7. package/app/(dashboard)/projects/[id]/agents/[name]/tools/view.tsx +2 -2
  8. package/app/(dashboard)/projects/[id]/agents/[name]/vault/view.tsx +1 -1
  9. package/app/(dashboard)/projects/[id]/agents/page.tsx +2 -2
  10. package/app/(dashboard)/projects/[id]/agents/view.tsx +2 -2
  11. package/app/(dashboard)/projects/[id]/logs/page.tsx +2 -2
  12. package/app/(dashboard)/projects/[id]/logs/view.tsx +3 -3
  13. package/app/(dashboard)/projects/[id]/memory/page.tsx +2 -2
  14. package/app/(dashboard)/projects/[id]/memory/view.tsx +1 -1
  15. package/app/(dashboard)/projects/[id]/missions/[missionId]/page.tsx +2 -2
  16. package/app/(dashboard)/projects/[id]/missions/[missionId]/view.tsx +3 -3
  17. package/app/(dashboard)/projects/[id]/missions/page.tsx +2 -2
  18. package/app/(dashboard)/projects/[id]/missions/view.tsx +5 -5
  19. package/app/(dashboard)/projects/[id]/onboarding-checklist.tsx +3 -3
  20. package/app/(dashboard)/projects/[id]/page.tsx +3 -3
  21. package/app/(dashboard)/projects/[id]/playbooks/[name]/view.tsx +4 -4
  22. package/app/(dashboard)/projects/[id]/playbooks/view.tsx +2 -2
  23. package/app/(dashboard)/projects/[id]/schedules/page.tsx +2 -2
  24. package/app/(dashboard)/projects/[id]/schedules/view.tsx +2 -2
  25. package/app/(dashboard)/projects/[id]/sessions/[sessionId]/page.tsx +2 -2
  26. package/app/(dashboard)/projects/[id]/sessions/[sessionId]/view.tsx +1 -1
  27. package/app/(dashboard)/projects/[id]/sessions/page.tsx +2 -2
  28. package/app/(dashboard)/projects/[id]/sessions/view.tsx +5 -5
  29. package/app/(dashboard)/projects/[id]/settings/page.tsx +4 -4
  30. package/app/(dashboard)/projects/[id]/skills/[name]/page.tsx +2 -2
  31. package/app/(dashboard)/projects/[id]/skills/[name]/view.tsx +4 -4
  32. package/app/(dashboard)/projects/[id]/skills/page.tsx +2 -2
  33. package/app/(dashboard)/projects/[id]/skills/view.tsx +4 -4
  34. package/app/(dashboard)/projects/[id]/storage/view.tsx +1 -1
  35. package/app/(dashboard)/projects/[id]/tasks/[taskId]/activity/view.tsx +2 -2
  36. package/app/(dashboard)/projects/[id]/tasks/[taskId]/assessment/view.tsx +1 -1
  37. package/app/(dashboard)/projects/[id]/tasks/[taskId]/blueprint.ts +1 -1
  38. package/app/(dashboard)/projects/[id]/tasks/[taskId]/output/view.tsx +2 -2
  39. package/app/(dashboard)/projects/[id]/tasks/[taskId]/page.tsx +3 -3
  40. package/app/(dashboard)/projects/[id]/tasks/[taskId]/view.tsx +1 -1
  41. package/app/(dashboard)/projects/[id]/tasks/page.tsx +2 -2
  42. package/app/(dashboard)/projects/[id]/tasks/view.tsx +5 -5
  43. package/app/(dashboard)/projects/[id]/view.tsx +4 -4
  44. package/app/(dashboard)/projects/[id]/welcome-banner.tsx +2 -2
  45. package/app/(dashboard)/projects/projects-list.tsx +1 -1
  46. package/app/(playground)/layout.tsx +2 -2
  47. package/app/(playground)/projects/[id]/playground/page.tsx +2 -2
  48. package/app/(playground)/projects/[id]/playground/view.tsx +2 -2
  49. package/app/(playground)/projects/[id]/playground-legacy/page.tsx +2 -2
  50. package/app/(playground)/projects/[id]/playground-legacy/skeleton.tsx +1 -1
  51. package/app/(playground)/projects/[id]/playground-legacy/view.tsx +1 -1
  52. package/components/ai-elements/code-block.tsx +3 -3
  53. package/components/dashboard/agent-picker-card.tsx +1 -1
  54. package/components/dashboard/agent-studio.tsx +10 -10
  55. package/components/dashboard/builder-chat.tsx +2 -2
  56. package/components/dashboard/client-picker.tsx +2 -2
  57. package/components/dashboard/connect-dialog.tsx +8 -8
  58. package/components/dashboard/file-browser.tsx +1 -1
  59. package/components/dashboard/markdown.tsx +1 -1
  60. package/components/dashboard/mcp-install-panel.tsx +2 -2
  61. package/components/dashboard/polpo-chat.tsx +2 -2
  62. package/components/dashboard/project-copilot.tsx +3 -3
  63. package/components/dashboard/sdk-snippet-panel.tsx +4 -4
  64. package/components/dashboard/settings-form.tsx +9 -9
  65. package/components/dashboard/sidebar.tsx +6 -6
  66. package/components/dashboard/skeletons.tsx +1 -1
  67. package/components/dashboard/skills-install-wizard.tsx +2 -2
  68. package/components/dashboard/task-studio.tsx +7 -7
  69. package/components/dashboard/top-header.tsx +2 -2
  70. package/components/dashboard/webhook-deliveries.tsx +1 -1
  71. package/components/providers.tsx +1 -1
  72. package/components/ui/badge.tsx +1 -1
  73. package/components/ui/button.tsx +1 -1
  74. package/components/ui/card.tsx +1 -1
  75. package/components/ui/chart.tsx +1 -1
  76. package/components/ui/command.tsx +3 -3
  77. package/components/ui/dialog.tsx +2 -2
  78. package/components/ui/input-group.tsx +4 -4
  79. package/components/ui/input.tsx +1 -1
  80. package/components/ui/multi-select.tsx +2 -2
  81. package/components/ui/popover.tsx +1 -1
  82. package/components/ui/select.tsx +1 -1
  83. package/components/ui/separator.tsx +1 -1
  84. package/components/ui/sheet.tsx +2 -2
  85. package/components/ui/skeleton.tsx +1 -1
  86. package/components/ui/tabs.tsx +1 -1
  87. package/components/ui/textarea.tsx +1 -1
  88. package/components/ui/tooltip.tsx +1 -1
  89. 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.0",
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/react": "0.7.18",
77
- "@polpo-ai/sdk": "0.7.18"
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",