@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
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)
|
|
@@ -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) {
|