@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.
- package/dist/copilotkit/index.cjs +4 -2
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +4 -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 +683 -515
- 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 +632 -466
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +43 -67
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.d.cts +5 -4
- package/dist/layout/index.d.ts +5 -4
- package/dist/layout/index.js +43 -67
- 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)
|
|
@@ -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) {
|