@polpo-ai/dashboard 0.1.1 → 0.1.3

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 (90) 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 +33 -12
  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/index.ts +3 -0
  90. package/package.json +3 -12
@@ -3,8 +3,8 @@
3
3
  import * as React from "react"
4
4
  import { Dialog as SheetPrimitive } from "@base-ui/react/dialog"
5
5
 
6
- import { cn } from "#/lib/utils"
7
- import { Button } from "#/components/ui/button"
6
+ import { cn } from "../../lib/utils"
7
+ import { Button } from "../../components/ui/button"
8
8
  import { XIcon } from "lucide-react"
9
9
 
10
10
  function Sheet({ ...props }: SheetPrimitive.Root.Props) {
@@ -1,4 +1,4 @@
1
- import { cn } from "#/lib/utils"
1
+ import { cn } from "../../lib/utils"
2
2
 
3
3
  function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
4
4
  return (
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { Tabs as TabsPrimitive } from "@base-ui/react/tabs";
4
4
 
5
- import { cn } from "#/lib/utils";
5
+ import { cn } from "../../lib/utils";
6
6
 
7
7
  const Tabs = TabsPrimitive.Root;
8
8
 
@@ -1,6 +1,6 @@
1
1
  import * as React from "react"
2
2
 
3
- import { cn } from "#/lib/utils"
3
+ import { cn } from "../../lib/utils"
4
4
 
5
5
  function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
6
6
  return (
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { Tooltip as TooltipPrimitive } from "@base-ui/react/tooltip"
4
4
 
5
- import { cn } from "#/lib/utils"
5
+ import { cn } from "../../lib/utils"
6
6
 
7
7
  function TooltipProvider({
8
8
  delay = 0,
package/index.ts CHANGED
@@ -12,3 +12,6 @@ export type { PolpoClientFactory } from "./lib/polpo-client";
12
12
 
13
13
  export { default as AgentsView } from "./app/(dashboard)/projects/[id]/agents/view";
14
14
  export type { Team } from "./app/(dashboard)/projects/[id]/agents/view";
15
+
16
+ export { default as SkillsView } from "./app/(dashboard)/projects/[id]/skills/view";
17
+ export type { SkillInfo } from "./app/(dashboard)/projects/[id]/skills/view";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polpo-ai/dashboard",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -12,15 +12,6 @@
12
12
  "hooks",
13
13
  "README.md"
14
14
  ],
15
- "imports": {
16
- "#/*": [
17
- "./*.tsx",
18
- "./*.ts",
19
- "./*/index.tsx",
20
- "./*/index.ts",
21
- "./*"
22
- ]
23
- },
24
15
  "exports": {
25
16
  ".": "./index.ts"
26
17
  },
@@ -78,9 +69,9 @@
78
69
  "sugar-high": "^1.1.0",
79
70
  "tailwind-merge": "^3.5.0",
80
71
  "tw-animate-css": "^1.4.0",
81
- "@polpo-ai/sdk": "0.7.18",
72
+ "@polpo-ai/core": "0.7.18",
82
73
  "@polpo-ai/react": "0.7.18",
83
- "@polpo-ai/core": "0.7.18"
74
+ "@polpo-ai/sdk": "0.7.18"
84
75
  },
85
76
  "devDependencies": {
86
77
  "@playwright/test": "^1.58.2",