@agentiffai/design 1.3.27 → 1.3.29
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 -5
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +4 -5
- 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 +31 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +31 -5
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +3 -2
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.js +3 -2
- package/dist/layout/index.js.map +1 -1
- package/dist/theme/index.cjs +29 -4
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.d.cts +62 -12
- package/dist/theme/index.d.ts +62 -12
- package/dist/theme/index.js +29 -4
- package/dist/theme/index.js.map +1 -1
- package/dist/workflow/index.cjs +3 -3
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +3 -3
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
package/dist/layout/index.cjs
CHANGED
|
@@ -41,7 +41,7 @@ var tokens = {
|
|
|
41
41
|
text: {
|
|
42
42
|
primary: "#FFFFFF",
|
|
43
43
|
secondary: "#B4B8C5",
|
|
44
|
-
tertiary: "#
|
|
44
|
+
tertiary: "#9CA3AF"},
|
|
45
45
|
// Teal (brand aligned)
|
|
46
46
|
error: "#EF4444",
|
|
47
47
|
// Sky Blue (brand aligned)
|
|
@@ -82,7 +82,7 @@ var tokens = {
|
|
|
82
82
|
},
|
|
83
83
|
typography: {
|
|
84
84
|
fontFamily: {
|
|
85
|
-
primary: "'
|
|
85
|
+
primary: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif"},
|
|
86
86
|
fontSize: {
|
|
87
87
|
xs: "0.875rem",
|
|
88
88
|
// 14px (was 12px, increased for better readability)
|
|
@@ -393,6 +393,7 @@ function CategoryNav({
|
|
|
393
393
|
"aria-label": subItem.name,
|
|
394
394
|
title: subItem.name,
|
|
395
395
|
"data-testid": `${testIdPrefix}-subitem-${subItem.id}`,
|
|
396
|
+
"data-active": isSubItemActive,
|
|
396
397
|
children: renderSubItemIcon(subItem, isSubItemActive)
|
|
397
398
|
},
|
|
398
399
|
subItem.id
|