@getcatalystiq/agent-plane-ui 0.1.2 → 0.1.4

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/index.cjs CHANGED
@@ -228,7 +228,8 @@ function Select({ className = "", ...props }) {
228
228
  /* @__PURE__ */ jsxRuntime.jsx(
229
229
  "select",
230
230
  {
231
- className: `flex h-9 w-full appearance-none rounded-md border border-input bg-transparent pl-3 pr-8 py-1 text-sm shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 ${className}`,
231
+ className: `flex h-9 w-full rounded-md border border-input bg-transparent pl-3 pr-8 py-1 text-sm shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 ${className}`,
232
+ style: { appearance: "none", WebkitAppearance: "none" },
232
233
  ...props
233
234
  }
234
235
  ),
@@ -963,7 +964,7 @@ function RunDetailPage({ runId, initialData, initialTranscript }) {
963
964
  );
964
965
  const { data: transcript } = useApi(
965
966
  run?.transcript_blob_url ? `transcript-${runId}` : null,
966
- (client) => client.runs.transcript(runId),
967
+ (client) => client.runs.transcriptArray(runId),
967
968
  initialTranscript ? { fallbackData: initialTranscript } : void 0
968
969
  );
969
970
  if (error) {
package/dist/index.d.cts CHANGED
@@ -41,6 +41,7 @@ interface AgentPlaneClient {
41
41
  get(runId: string): Promise<unknown>;
42
42
  cancel(runId: string): Promise<unknown>;
43
43
  transcript(runId: string): Promise<unknown>;
44
+ transcriptArray(runId: string): Promise<unknown[]>;
44
45
  };
45
46
  sessions: {
46
47
  list(params?: Record<string, unknown>): Promise<unknown>;
package/dist/index.d.ts CHANGED
@@ -41,6 +41,7 @@ interface AgentPlaneClient {
41
41
  get(runId: string): Promise<unknown>;
42
42
  cancel(runId: string): Promise<unknown>;
43
43
  transcript(runId: string): Promise<unknown>;
44
+ transcriptArray(runId: string): Promise<unknown[]>;
44
45
  };
45
46
  sessions: {
46
47
  list(params?: Record<string, unknown>): Promise<unknown>;
package/dist/index.js CHANGED
@@ -202,7 +202,8 @@ function Select({ className = "", ...props }) {
202
202
  /* @__PURE__ */ jsx(
203
203
  "select",
204
204
  {
205
- className: `flex h-9 w-full appearance-none rounded-md border border-input bg-transparent pl-3 pr-8 py-1 text-sm shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 ${className}`,
205
+ className: `flex h-9 w-full rounded-md border border-input bg-transparent pl-3 pr-8 py-1 text-sm shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 ${className}`,
206
+ style: { appearance: "none", WebkitAppearance: "none" },
206
207
  ...props
207
208
  }
208
209
  ),
@@ -937,7 +938,7 @@ function RunDetailPage({ runId, initialData, initialTranscript }) {
937
938
  );
938
939
  const { data: transcript } = useApi(
939
940
  run?.transcript_blob_url ? `transcript-${runId}` : null,
940
- (client) => client.runs.transcript(runId),
941
+ (client) => client.runs.transcriptArray(runId),
941
942
  initialTranscript ? { fallbackData: initialTranscript } : void 0
942
943
  );
943
944
  if (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getcatalystiq/agent-plane-ui",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Embeddable React component library for AgentPlane",
5
5
  "type": "module",
6
6
  "exports": {