@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.cjs CHANGED
@@ -47,7 +47,7 @@ var tokens = {
47
47
  text: {
48
48
  primary: "#FFFFFF",
49
49
  secondary: "#B4B8C5",
50
- tertiary: "#6B7280",
50
+ tertiary: "#9CA3AF",
51
51
  disabled: "#4B5563"
52
52
  },
53
53
  // Semantic colors
@@ -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",
@@ -143,9 +155,9 @@ var tokens = {
143
155
  },
144
156
  typography: {
145
157
  fontFamily: {
146
- primary: "'TT Interphases Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif",
147
- heading: "'TT Interphases Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif",
148
- monospace: "'Monaco', 'Menlo', 'Ubuntu Mono', monospace"
158
+ primary: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif",
159
+ heading: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif",
160
+ monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace"
149
161
  },
150
162
  fontSize: {
151
163
  xs: "0.875rem",
@@ -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: {
@@ -1499,7 +1524,7 @@ var StyledTextField = styled57__default.default(reactAriaComponents.TextField)`
1499
1524
  min-height: 44px; /* Touch-friendly sizing for mobile */
1500
1525
  padding: 0.75rem 1rem;
1501
1526
  font-size: 1rem;
1502
- border: 1px solid ${({ $hasError }) => $hasError ? tokens.colors.border.error : "${tokens.colors.border.primary}"};
1527
+ border: 1px solid ${({ $hasError }) => $hasError ? tokens.colors.border.error : tokens.colors.border.default};
1503
1528
  border-radius: 0.5rem;
1504
1529
  background: ${tokens.colors.surface.overlay};
1505
1530
  color: white;
@@ -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