@pstdio/ui 0.2.0 → 0.2.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 (45) hide show
  1. package/dist/chat-ui.js +691 -637
  2. package/dist/chat-ui.js.map +1 -1
  3. package/dist/components/chat-ui/agent-types.d.ts +1 -0
  4. package/dist/components/chat-ui/components/ai-conversation.d.ts +21 -579
  5. package/dist/components/chat-ui/components/ai-conversation.test.d.ts +1 -0
  6. package/dist/components/chat-ui/components/ai-message.d.ts +8 -8
  7. package/dist/components/chat-ui/components/chat-panel.d.ts +2 -0
  8. package/dist/components/chat-ui/components/message-parts-renderer.stories.d.ts +1 -0
  9. package/dist/components/chat-ui/components/message-types.d.ts +8 -0
  10. package/dist/components/menu-item.d.ts +3 -1
  11. package/dist/components/menu-item.stories.d.ts +1 -1
  12. package/dist/components/rich-text/rich-message/rich-message.d.ts +1 -0
  13. package/dist/components/rich-text/shared/plugins/CodePlugin/CodeNode.d.ts +2 -0
  14. package/dist/components/rich-text/shared/plugins/CodePlugin/CodeNode.test.d.ts +1 -0
  15. package/dist/components/scroll-area.d.ts +1 -0
  16. package/dist/components/sidebar-next/sidebar-next-header.d.ts +1 -1
  17. package/dist/components/sidebar-next/sidebar-next.types.d.ts +3 -1
  18. package/dist/components/sidebar-tree/sidebar-tree.d.ts +2 -1
  19. package/dist/components/sidebar-tree/sidebar-tree.types.d.ts +9 -1
  20. package/dist/components/tickets/display-menu.d.ts +15 -0
  21. package/dist/components/tickets/display-menu.stories.d.ts +6 -0
  22. package/dist/components/tickets/filter-menu.d.ts +11 -0
  23. package/dist/components/tickets/filter-menu.stories.d.ts +6 -0
  24. package/dist/components/tickets/ticket-board.d.ts +7 -0
  25. package/dist/components/tickets/ticket-grouping.d.ts +22 -0
  26. package/dist/components/tickets/ticket-grouping.test.d.ts +1 -0
  27. package/dist/components/tickets/tickets-workspace.d.ts +29 -0
  28. package/dist/components/tickets/tickets-workspace.stories.d.ts +10 -0
  29. package/dist/components/tickets/types.d.ts +49 -0
  30. package/dist/components/tickets/use-workspace-store.d.ts +51 -0
  31. package/dist/components/tickets/use-workspace-store.test.d.ts +1 -0
  32. package/dist/index.d.ts +8 -1
  33. package/dist/index.js +2077 -1211
  34. package/dist/index.js.map +1 -1
  35. package/dist/{rich-message-B2gxL8oy.js → rich-message-C0_i-4Ux.js} +323 -308
  36. package/dist/rich-message-C0_i-4Ux.js.map +1 -0
  37. package/dist/rich-text.js +89 -88
  38. package/dist/rich-text.js.map +1 -1
  39. package/dist/scroll-area-DZs-GiIp.js +267 -0
  40. package/dist/scroll-area-DZs-GiIp.js.map +1 -0
  41. package/dist/style.css +1 -1
  42. package/package.json +2 -2
  43. package/dist/empty-state-B8mbv7ZH.js +0 -128
  44. package/dist/empty-state-B8mbv7ZH.js.map +0 -1
  45. package/dist/rich-message-B2gxL8oy.js.map +0 -1
@@ -52,6 +52,7 @@ export type LoadingPart = {
52
52
  export type ErrorPart = {
53
53
  type: "error";
54
54
  errorType: "timeout" | "crash" | "permission" | "other";
55
+ message?: string;
55
56
  };
56
57
  export type TokenUsagePart = {
57
58
  type: "token_usage";