@agentiffai/design 1.3.24 → 1.3.26

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.
@@ -33,7 +33,7 @@ var tokens = {
33
33
  text: {
34
34
  primary: "#FFFFFF",
35
35
  secondary: "#B4B8C5",
36
- tertiary: "#6B7280",
36
+ tertiary: "#9CA3AF",
37
37
  disabled: "#4B5563"
38
38
  },
39
39
  // Teal (brand aligned)
@@ -879,7 +879,8 @@ var iconFiles = {
879
879
  "hammer-fill": "Icon-hammer-fill.svg",
880
880
  "rocket-fill": "Icon-rocket-fill.svg",
881
881
  "coupon-2-fill": "Icon-coupon-2-fill.svg",
882
- "clipboard-fill": "Icon-clipboard-fill.svg"
882
+ "clipboard-fill": "Icon-clipboard-fill.svg",
883
+ "question-circle-line": "Icon-question-circle-line.svg"
883
884
  };
884
885
  function getIconPath(name) {
885
886
  return `${ICON_BASE_PATH}/${iconFiles[name]}`;
@@ -1485,6 +1486,7 @@ function stripToolCallMarkers(content) {
1485
1486
  stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
1486
1487
  stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
1487
1488
  stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
1489
+ stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
1488
1490
  return stripped.trim();
1489
1491
  }
1490
1492
  function extractToolCallNames(content) {