agentic-ui-libs 1.1.0-beta.7 → 1.1.0-beta.9

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.
@@ -1 +1 @@
1
- {"version":3,"file":"TracesList.d.ts","sourceRoot":"","sources":["../../../../src/features/tracing/components/TracesList.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EAAE,eAAe,EAAwF,MAAM,UAAU,CAAC;AAQjI,OAAO,6BAA6B,CAAC;AA88BrC;;;GAGG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,2CAMhD"}
1
+ {"version":3,"file":"TracesList.d.ts","sourceRoot":"","sources":["../../../../src/features/tracing/components/TracesList.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EAAE,eAAe,EAAwF,MAAM,UAAU,CAAC;AAQjI,OAAO,6BAA6B,CAAC;AAw9BrC;;;GAGG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,2CAMhD"}
package/dist/index.js CHANGED
@@ -110429,7 +110429,8 @@ function TracesListContent(props) {
110429
110429
  input: detail["input"],
110430
110430
  output: detail["output"],
110431
110431
  totalCost: detail["totalCost"],
110432
- envId: detail["envId"]
110432
+ envId: detail["envId"],
110433
+ source: detail["source"]
110433
110434
  });
110434
110435
  return newMap;
110435
110436
  });
@@ -110645,7 +110646,14 @@ function TracesListContent(props) {
110645
110646
  headerName: "Source",
110646
110647
  width: 150,
110647
110648
  hide: false,
110648
- cellRenderer: (params) => /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-xs text-gray-600", children: params.value || "-" })
110649
+ cellRenderer: (params) => {
110650
+ const detailData = detailedTraceData.get(params.data.id);
110651
+ const source = detailData == null ? void 0 : detailData.source;
110652
+ if (source === void 0) {
110653
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-xs text-gray-400 italic", children: "Loading..." });
110654
+ }
110655
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-xs text-gray-600", children: source || "-" });
110656
+ }
110649
110657
  },
110650
110658
  {
110651
110659
  field: "promptTokens",
@@ -110447,7 +110447,8 @@ For more info see: https://www.ag-grid.com/javascript-grid/modules/`;
110447
110447
  input: detail["input"],
110448
110448
  output: detail["output"],
110449
110449
  totalCost: detail["totalCost"],
110450
- envId: detail["envId"]
110450
+ envId: detail["envId"],
110451
+ source: detail["source"]
110451
110452
  });
110452
110453
  return newMap;
110453
110454
  });
@@ -110663,7 +110664,14 @@ For more info see: https://www.ag-grid.com/javascript-grid/modules/`;
110663
110664
  headerName: "Source",
110664
110665
  width: 150,
110665
110666
  hide: false,
110666
- cellRenderer: (params) => /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-xs text-gray-600", children: params.value || "-" })
110667
+ cellRenderer: (params) => {
110668
+ const detailData = detailedTraceData.get(params.data.id);
110669
+ const source = detailData == null ? void 0 : detailData.source;
110670
+ if (source === void 0) {
110671
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-xs text-gray-400 italic", children: "Loading..." });
110672
+ }
110673
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-xs text-gray-600", children: source || "-" });
110674
+ }
110667
110675
  },
110668
110676
  {
110669
110677
  field: "promptTokens",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-ui-libs",
3
- "version": "1.1.0-beta.7",
3
+ "version": "1.1.0-beta.9",
4
4
  "type": "module",
5
5
  "description": "A modular, config-driven analytics library for React and Angular applications",
6
6
  "main": "dist/index.js",