@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.
@@ -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)
@@ -870,6 +870,7 @@ var iconFiles = {
870
870
  "flow-chart": "Icon-flow-chart.svg",
871
871
  "logout-circle-r-fill": "Icon-logout-circle-r-fill.svg",
872
872
  "logout-circle-r-line": "Icon-logout-circle-r-line.svg",
873
+ "question-line": "Icon-question-line.svg",
873
874
  "side-bar-fill": "Icon-side-bar-fill.svg",
874
875
  "check-fill": "Icon-check-fill.svg",
875
876
  "checkbox-circle-fill": "Icon-checkbox-circle-fill.svg",
@@ -878,7 +879,8 @@ var iconFiles = {
878
879
  "hammer-fill": "Icon-hammer-fill.svg",
879
880
  "rocket-fill": "Icon-rocket-fill.svg",
880
881
  "coupon-2-fill": "Icon-coupon-2-fill.svg",
881
- "clipboard-fill": "Icon-clipboard-fill.svg"
882
+ "clipboard-fill": "Icon-clipboard-fill.svg",
883
+ "question-circle-line": "Icon-question-circle-line.svg"
882
884
  };
883
885
  function getIconPath(name) {
884
886
  return `${ICON_BASE_PATH}/${iconFiles[name]}`;
@@ -1484,6 +1486,7 @@ function stripToolCallMarkers(content) {
1484
1486
  stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
1485
1487
  stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
1486
1488
  stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
1489
+ stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
1487
1490
  return stripped.trim();
1488
1491
  }
1489
1492
  function extractToolCallNames(content) {