@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.cjs
CHANGED
|
@@ -102,6 +102,18 @@ var tokens = {
|
|
|
102
102
|
// Teal (brand aligned)
|
|
103
103
|
error: "#EF4444"
|
|
104
104
|
},
|
|
105
|
+
// Category colors (for workflow progress badges)
|
|
106
|
+
category: {
|
|
107
|
+
setup: "#459FB9",
|
|
108
|
+
integration: "#8B5CF6",
|
|
109
|
+
generation: "#2CB0AB",
|
|
110
|
+
image: "#EC4899",
|
|
111
|
+
scheduling: "#F59E0B",
|
|
112
|
+
completion: "#4EB999",
|
|
113
|
+
processing: "#459FB9",
|
|
114
|
+
custom: "#6B7280",
|
|
115
|
+
notion: "#6B7280"
|
|
116
|
+
},
|
|
105
117
|
// Scrollbar colors
|
|
106
118
|
scrollbar: {
|
|
107
119
|
track: "transparent",
|
|
@@ -239,6 +251,19 @@ var tokens = {
|
|
|
239
251
|
exit: "cubic-bezier(0.4, 0, 1, 1)",
|
|
240
252
|
smooth: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
241
253
|
linear: "linear"
|
|
254
|
+
},
|
|
255
|
+
overlay: {
|
|
256
|
+
duration: "200ms",
|
|
257
|
+
easing: "cubic-bezier(0.4, 0, 0.2, 1)"
|
|
258
|
+
},
|
|
259
|
+
typewriter: {
|
|
260
|
+
speed: "50ms"
|
|
261
|
+
},
|
|
262
|
+
spinner: {
|
|
263
|
+
duration: "1000ms"
|
|
264
|
+
},
|
|
265
|
+
pulse: {
|
|
266
|
+
duration: "2000ms"
|
|
242
267
|
}
|
|
243
268
|
},
|
|
244
269
|
zIndex: {
|
|
@@ -2140,6 +2165,7 @@ function CategoryNav({
|
|
|
2140
2165
|
"aria-label": subItem.name,
|
|
2141
2166
|
title: subItem.name,
|
|
2142
2167
|
"data-testid": `${testIdPrefix}-subitem-${subItem.id}`,
|
|
2168
|
+
"data-active": isSubItemActive,
|
|
2143
2169
|
children: renderSubItemIcon(subItem, isSubItemActive)
|
|
2144
2170
|
},
|
|
2145
2171
|
subItem.id
|