@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/index.js CHANGED
@@ -40,7 +40,7 @@ var tokens = {
40
40
  text: {
41
41
  primary: "#FFFFFF",
42
42
  secondary: "#B4B8C5",
43
- tertiary: "#6B7280",
43
+ tertiary: "#9CA3AF",
44
44
  disabled: "#4B5563"
45
45
  },
46
46
  // Semantic colors
@@ -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",
@@ -136,9 +148,9 @@ var tokens = {
136
148
  },
137
149
  typography: {
138
150
  fontFamily: {
139
- primary: "'TT Interphases Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif",
140
- heading: "'TT Interphases Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif",
141
- monospace: "'Monaco', 'Menlo', 'Ubuntu Mono', monospace"
151
+ primary: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif",
152
+ heading: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif",
153
+ monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace"
142
154
  },
143
155
  fontSize: {
144
156
  xs: "0.875rem",
@@ -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: {
@@ -1492,7 +1517,7 @@ var StyledTextField = styled57(TextField)`
1492
1517
  min-height: 44px; /* Touch-friendly sizing for mobile */
1493
1518
  padding: 0.75rem 1rem;
1494
1519
  font-size: 1rem;
1495
- border: 1px solid ${({ $hasError }) => $hasError ? tokens.colors.border.error : "${tokens.colors.border.primary}"};
1520
+ border: 1px solid ${({ $hasError }) => $hasError ? tokens.colors.border.error : tokens.colors.border.default};
1496
1521
  border-radius: 0.5rem;
1497
1522
  background: ${tokens.colors.surface.overlay};
1498
1523
  color: white;
@@ -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