@agentiffai/design 1.3.24 → 1.3.25

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.
@@ -40,7 +40,7 @@ var tokens = {
40
40
  text: {
41
41
  primary: "#FFFFFF",
42
42
  secondary: "#B4B8C5",
43
- tertiary: "#6B7280",
43
+ tertiary: "#9CA3AF",
44
44
  disabled: "#4B5563"
45
45
  },
46
46
  // Teal (brand aligned)
@@ -886,7 +886,8 @@ var iconFiles = {
886
886
  "hammer-fill": "Icon-hammer-fill.svg",
887
887
  "rocket-fill": "Icon-rocket-fill.svg",
888
888
  "coupon-2-fill": "Icon-coupon-2-fill.svg",
889
- "clipboard-fill": "Icon-clipboard-fill.svg"
889
+ "clipboard-fill": "Icon-clipboard-fill.svg",
890
+ "question-circle-line": "Icon-question-circle-line.svg"
890
891
  };
891
892
  function getIconPath(name) {
892
893
  return `${ICON_BASE_PATH}/${iconFiles[name]}`;
@@ -1492,6 +1493,7 @@ function stripToolCallMarkers(content) {
1492
1493
  stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
1493
1494
  stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
1494
1495
  stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
1496
+ stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
1495
1497
  return stripped.trim();
1496
1498
  }
1497
1499
  function extractToolCallNames(content) {