@agentiffai/design 1.3.23 → 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)
@@ -877,6 +877,7 @@ var iconFiles = {
877
877
  "flow-chart": "Icon-flow-chart.svg",
878
878
  "logout-circle-r-fill": "Icon-logout-circle-r-fill.svg",
879
879
  "logout-circle-r-line": "Icon-logout-circle-r-line.svg",
880
+ "question-line": "Icon-question-line.svg",
880
881
  "side-bar-fill": "Icon-side-bar-fill.svg",
881
882
  "check-fill": "Icon-check-fill.svg",
882
883
  "checkbox-circle-fill": "Icon-checkbox-circle-fill.svg",
@@ -885,7 +886,8 @@ var iconFiles = {
885
886
  "hammer-fill": "Icon-hammer-fill.svg",
886
887
  "rocket-fill": "Icon-rocket-fill.svg",
887
888
  "coupon-2-fill": "Icon-coupon-2-fill.svg",
888
- "clipboard-fill": "Icon-clipboard-fill.svg"
889
+ "clipboard-fill": "Icon-clipboard-fill.svg",
890
+ "question-circle-line": "Icon-question-circle-line.svg"
889
891
  };
890
892
  function getIconPath(name) {
891
893
  return `${ICON_BASE_PATH}/${iconFiles[name]}`;
@@ -1491,6 +1493,7 @@ function stripToolCallMarkers(content) {
1491
1493
  stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
1492
1494
  stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
1493
1495
  stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
1496
+ stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
1494
1497
  return stripped.trim();
1495
1498
  }
1496
1499
  function extractToolCallNames(content) {