@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.
- 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 +682 -514
- 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 +631 -465
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +42 -66
- 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 +42 -66
- 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
package/dist/copilotkit/index.js
CHANGED
|
@@ -33,7 +33,7 @@ var tokens = {
|
|
|
33
33
|
text: {
|
|
34
34
|
primary: "#FFFFFF",
|
|
35
35
|
secondary: "#B4B8C5",
|
|
36
|
-
tertiary: "#
|
|
36
|
+
tertiary: "#9CA3AF",
|
|
37
37
|
disabled: "#4B5563"
|
|
38
38
|
},
|
|
39
39
|
// Teal (brand aligned)
|
|
@@ -879,7 +879,8 @@ var iconFiles = {
|
|
|
879
879
|
"hammer-fill": "Icon-hammer-fill.svg",
|
|
880
880
|
"rocket-fill": "Icon-rocket-fill.svg",
|
|
881
881
|
"coupon-2-fill": "Icon-coupon-2-fill.svg",
|
|
882
|
-
"clipboard-fill": "Icon-clipboard-fill.svg"
|
|
882
|
+
"clipboard-fill": "Icon-clipboard-fill.svg",
|
|
883
|
+
"question-circle-line": "Icon-question-circle-line.svg"
|
|
883
884
|
};
|
|
884
885
|
function getIconPath(name) {
|
|
885
886
|
return `${ICON_BASE_PATH}/${iconFiles[name]}`;
|
|
@@ -1485,6 +1486,7 @@ function stripToolCallMarkers(content) {
|
|
|
1485
1486
|
stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
|
|
1486
1487
|
stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
|
|
1487
1488
|
stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
|
|
1489
|
+
stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
|
|
1488
1490
|
return stripped.trim();
|
|
1489
1491
|
}
|
|
1490
1492
|
function extractToolCallNames(content) {
|