@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.
- package/dist/copilotkit/index.cjs +5 -2
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +5 -2
- package/dist/copilotkit/index.js.map +1 -1
- package/dist/icons/index.cjs.map +1 -1
- package/dist/icons/index.js.map +1 -1
- package/dist/index.cjs +684 -502
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -2
- package/dist/index.d.ts +28 -2
- package/dist/index.js +633 -453
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +44 -54
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.d.cts +6 -2
- package/dist/layout/index.d.ts +6 -2
- package/dist/layout/index.js +44 -54
- package/dist/layout/index.js.map +1 -1
- package/dist/theme/index.cjs +1 -1
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.d.cts +3 -3
- package/dist/theme/index.d.ts +3 -3
- package/dist/theme/index.js +1 -1
- package/dist/theme/index.js.map +1 -1
- package/dist/workflow/index.cjs +1 -1
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +1 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/icon-set/Icon-question-circle-line.svg +1 -0
|
@@ -40,7 +40,7 @@ var tokens = {
|
|
|
40
40
|
text: {
|
|
41
41
|
primary: "#FFFFFF",
|
|
42
42
|
secondary: "#B4B8C5",
|
|
43
|
-
tertiary: "#
|
|
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) {
|