@agentiffai/design 1.3.28 → 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 +1 -2
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +1 -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 +26 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +1 -0
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.js +1 -0
- package/dist/layout/index.js.map +1 -1
- package/dist/theme/index.cjs +25 -0
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.d.cts +50 -0
- package/dist/theme/index.d.ts +50 -0
- package/dist/theme/index.js +25 -0
- package/dist/theme/index.js.map +1 -1
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -95,6 +95,18 @@ var tokens = {
|
|
|
95
95
|
// Teal (brand aligned)
|
|
96
96
|
error: "#EF4444"
|
|
97
97
|
},
|
|
98
|
+
// Category colors (for workflow progress badges)
|
|
99
|
+
category: {
|
|
100
|
+
setup: "#459FB9",
|
|
101
|
+
integration: "#8B5CF6",
|
|
102
|
+
generation: "#2CB0AB",
|
|
103
|
+
image: "#EC4899",
|
|
104
|
+
scheduling: "#F59E0B",
|
|
105
|
+
completion: "#4EB999",
|
|
106
|
+
processing: "#459FB9",
|
|
107
|
+
custom: "#6B7280",
|
|
108
|
+
notion: "#6B7280"
|
|
109
|
+
},
|
|
98
110
|
// Scrollbar colors
|
|
99
111
|
scrollbar: {
|
|
100
112
|
track: "transparent",
|
|
@@ -232,6 +244,19 @@ var tokens = {
|
|
|
232
244
|
exit: "cubic-bezier(0.4, 0, 1, 1)",
|
|
233
245
|
smooth: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
234
246
|
linear: "linear"
|
|
247
|
+
},
|
|
248
|
+
overlay: {
|
|
249
|
+
duration: "200ms",
|
|
250
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)"
|
|
251
|
+
},
|
|
252
|
+
typewriter: {
|
|
253
|
+
speed: "50ms"
|
|
254
|
+
},
|
|
255
|
+
spinner: {
|
|
256
|
+
duration: "1000ms"
|
|
257
|
+
},
|
|
258
|
+
pulse: {
|
|
259
|
+
duration: "2000ms"
|
|
235
260
|
}
|
|
236
261
|
},
|
|
237
262
|
zIndex: {
|
|
@@ -2133,6 +2158,7 @@ function CategoryNav({
|
|
|
2133
2158
|
"aria-label": subItem.name,
|
|
2134
2159
|
title: subItem.name,
|
|
2135
2160
|
"data-testid": `${testIdPrefix}-subitem-${subItem.id}`,
|
|
2161
|
+
"data-active": isSubItemActive,
|
|
2136
2162
|
children: renderSubItemIcon(subItem, isSubItemActive)
|
|
2137
2163
|
},
|
|
2138
2164
|
subItem.id
|