@agentiffai/design 1.3.23 → 1.3.25

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
@@ -1,6 +1,7 @@
1
1
  import React4, { memo, useRef, useEffect, useMemo, useState, useCallback, useId } from 'react';
2
- import styled48, { keyframes, css, createGlobalStyle } from 'styled-components';
2
+ import styled50, { keyframes, css, createGlobalStyle } from 'styled-components';
3
3
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
4
+ import { useButton as useButton$1 } from 'react-aria';
4
5
  import { useButton } from '@react-aria/button';
5
6
  import { useMeter } from '@react-aria/meter';
6
7
  import { useTabList, useTabPanel, useTab } from '@react-aria/tabs';
@@ -39,7 +40,7 @@ var tokens = {
39
40
  text: {
40
41
  primary: "#FFFFFF",
41
42
  secondary: "#B4B8C5",
42
- tertiary: "#6B7280",
43
+ tertiary: "#9CA3AF",
43
44
  disabled: "#4B5563"
44
45
  },
45
46
  // Semantic colors
@@ -309,7 +310,7 @@ var getSizeValue = (size = "md") => {
309
310
  };
310
311
  }
311
312
  };
312
- var Container = styled48.div`
313
+ var Container = styled50.div`
313
314
  display: inline-flex;
314
315
  align-items: center;
315
316
  gap: ${tokens.spacing.md};
@@ -321,7 +322,7 @@ var Container = styled48.div`
321
322
  max-width: fit-content;
322
323
  margin: 0 auto;
323
324
  `;
324
- var Avatar = styled48.div`
325
+ var Avatar = styled50.div`
325
326
  width: ${(props) => getSizeValue(props.size).avatar};
326
327
  height: ${(props) => getSizeValue(props.size).avatar};
327
328
  border-radius: ${tokens.borderRadius.full};
@@ -332,23 +333,23 @@ var Avatar = styled48.div`
332
333
  flex-shrink: 0;
333
334
  box-shadow: ${tokens.shadows.glow.primary};
334
335
  `;
335
- var HeadphonesIcon = styled48.svg`
336
+ var HeadphonesIcon = styled50.svg`
336
337
  width: ${(props) => getSizeValue(props.size).icon};
337
338
  height: ${(props) => getSizeValue(props.size).icon};
338
339
  color: ${tokens.colors.text.primary};
339
340
  `;
340
- var Content = styled48.div`
341
+ var Content = styled50.div`
341
342
  display: flex;
342
343
  align-items: center;
343
344
  gap: ${tokens.spacing.sm};
344
345
  `;
345
- var LoadingDots = styled48.div`
346
+ var LoadingDots = styled50.div`
346
347
  display: flex;
347
348
  align-items: center;
348
349
  gap: ${(props) => props.variant === "wave" ? "2px" : `${tokens.spacing.xs}`};
349
350
  padding: 0 ${tokens.spacing.xs};
350
351
  `;
351
- var Dot = styled48.span`
352
+ var Dot = styled50.span`
352
353
  width: ${(props) => getSizeValue(props.size).dotSize};
353
354
  height: ${(props) => getSizeValue(props.size).dotSize};
354
355
  border-radius: ${tokens.borderRadius.full};
@@ -366,7 +367,7 @@ var Dot = styled48.span`
366
367
  }}
367
368
  1.4s ease-in-out infinite;
368
369
  `;
369
- var Message = styled48.span`
370
+ var Message = styled50.span`
370
371
  font-size: ${(props) => getSizeValue(props.size).fontSize};
371
372
  color: ${tokens.colors.text.secondary};
372
373
  font-weight: ${tokens.typography.fontWeight.regular};
@@ -426,7 +427,194 @@ function AssistantThinking({
426
427
  );
427
428
  }
428
429
  AssistantThinking.displayName = "AssistantThinking";
429
- var ChatInputContainer = styled48.div`
430
+ var StyledContainer = styled50.div`
431
+ display: flex;
432
+ width: 100%;
433
+ height: 52px;
434
+ background: ${tokens.colors.background.dark};
435
+ border-radius: ${tokens.borderRadius.lg};
436
+ padding: ${tokens.spacing.xs};
437
+ gap: ${tokens.spacing.xs};
438
+ `;
439
+ var StyledOption = styled50.button`
440
+ flex: 1;
441
+ height: 44px;
442
+ background: ${({ $isActive }) => $isActive ? tokens.colors.primary : tokens.colors.background.light};
443
+ border: none;
444
+ border-radius: ${tokens.borderRadius.md};
445
+ cursor: pointer;
446
+ display: flex;
447
+ align-items: center;
448
+ justify-content: center;
449
+ gap: ${tokens.spacing.xs};
450
+ padding: 0;
451
+ transition: background ${tokens.transitions.fast};
452
+
453
+ &:hover {
454
+ opacity: 0.9;
455
+ }
456
+ `;
457
+ var StyledLabel = styled50.span`
458
+ font-family: Inter, sans-serif;
459
+ font-weight: ${tokens.typography.fontWeight.semibold};
460
+ font-size: 14px;
461
+ line-height: 1.5714285714285714em;
462
+ color: ${tokens.colors.text.primary};
463
+ `;
464
+ var StyledBadge = styled50.span`
465
+ display: inline-flex;
466
+ align-items: center;
467
+ justify-content: center;
468
+ padding: 2px 6px;
469
+ background: ${tokens.colors.surface.overlayHover};
470
+ border-radius: ${tokens.borderRadius.full};
471
+ font-family: Inter, sans-serif;
472
+ font-weight: ${tokens.typography.fontWeight.bold};
473
+ font-size: 11px;
474
+ line-height: 1.4545454545454546em;
475
+ color: ${tokens.colors.text.primary};
476
+ `;
477
+ function BillingToggle({
478
+ value,
479
+ onChange,
480
+ discountText = "30% Off"
481
+ }) {
482
+ const monthlyRef = useRef(null);
483
+ const yearlyRef = useRef(null);
484
+ const monthlyProps = {
485
+ onPress: () => onChange?.("monthly")
486
+ };
487
+ const yearlyProps = {
488
+ onPress: () => onChange?.("yearly")
489
+ };
490
+ const { buttonProps: monthlyButtonProps } = useButton$1(monthlyProps, monthlyRef);
491
+ const { buttonProps: yearlyButtonProps } = useButton$1(yearlyProps, yearlyRef);
492
+ return /* @__PURE__ */ jsxs(StyledContainer, { children: [
493
+ /* @__PURE__ */ jsx(
494
+ StyledOption,
495
+ {
496
+ ...monthlyButtonProps,
497
+ ref: monthlyRef,
498
+ $isActive: value === "monthly",
499
+ children: /* @__PURE__ */ jsx(StyledLabel, { $isActive: value === "monthly", children: "Monthly" })
500
+ }
501
+ ),
502
+ /* @__PURE__ */ jsxs(
503
+ StyledOption,
504
+ {
505
+ ...yearlyButtonProps,
506
+ ref: yearlyRef,
507
+ $isActive: value === "yearly",
508
+ children: [
509
+ /* @__PURE__ */ jsx(StyledLabel, { $isActive: value === "yearly", children: "Yearly" }),
510
+ /* @__PURE__ */ jsx(StyledBadge, { children: discountText })
511
+ ]
512
+ }
513
+ )
514
+ ] });
515
+ }
516
+ var StyledCard = styled50.div`
517
+ background: ${tokens.colors.background.dark};
518
+ border-radius: ${tokens.borderRadius.md};
519
+ width: 100%;
520
+ padding: 10px 12px;
521
+ position: relative;
522
+ `;
523
+ var StyledHeader = styled50.div`
524
+ display: flex;
525
+ justify-content: space-between;
526
+ align-items: center;
527
+ margin-bottom: 2px;
528
+ `;
529
+ var StyledBadge2 = styled50.span`
530
+ font-weight: ${tokens.typography.fontWeight.semibold};
531
+ font-size: 13px;
532
+ line-height: 1.4;
533
+ color: ${tokens.colors.primary};
534
+ `;
535
+ var StyledLabel2 = styled50.span`
536
+ font-weight: ${tokens.typography.fontWeight.bold};
537
+ font-size: 14px;
538
+ line-height: 1.4;
539
+ color: ${tokens.colors.text.primary};
540
+ `;
541
+ var StyledDescription = styled50.p`
542
+ font-size: 12px;
543
+ line-height: 1.4;
544
+ color: ${tokens.colors.text.secondary};
545
+ margin: 0 0 6px 0;
546
+ `;
547
+ var StyledDivider = styled50.div`
548
+ width: 100%;
549
+ height: 1px;
550
+ background: ${tokens.colors.border.default};
551
+ margin-bottom: 6px;
552
+ `;
553
+ var StyledFooter = styled50.div`
554
+ display: flex;
555
+ justify-content: space-between;
556
+ align-items: center;
557
+ `;
558
+ var StyledCredits = styled50.div`
559
+ display: flex;
560
+ align-items: center;
561
+ gap: 6px;
562
+ `;
563
+ var StyledCheckIcon = styled50.svg`
564
+ width: 16px;
565
+ height: 16px;
566
+ flex-shrink: 0;
567
+ `;
568
+ var StyledCreditsText = styled50.span`
569
+ font-size: 13px;
570
+ line-height: 1.4;
571
+ color: ${tokens.colors.text.primary};
572
+ `;
573
+ var StyledExecutions = styled50.span`
574
+ font-size: 11px;
575
+ line-height: 1.4;
576
+ color: ${tokens.colors.text.secondary};
577
+ text-align: right;
578
+ `;
579
+ function formatPrice(price, billingInterval = "monthly") {
580
+ if (price == null) return "Free";
581
+ if (billingInterval === "annual") return `$${(price * 12).toFixed(2)}/year`;
582
+ return `$${price.toFixed(2)}/mo`;
583
+ }
584
+ function TrialPlanCard({
585
+ badge = "Trial",
586
+ price = null,
587
+ billingInterval = "monthly",
588
+ description = "Explore the platform risk-free",
589
+ executions = "~ 100 executions",
590
+ credits = "1,000 credits"
591
+ }) {
592
+ return /* @__PURE__ */ jsxs(StyledCard, { children: [
593
+ /* @__PURE__ */ jsxs(StyledHeader, { children: [
594
+ /* @__PURE__ */ jsx(StyledBadge2, { children: badge }),
595
+ /* @__PURE__ */ jsx(StyledLabel2, { children: formatPrice(price, billingInterval) })
596
+ ] }),
597
+ /* @__PURE__ */ jsx(StyledDescription, { children: description }),
598
+ /* @__PURE__ */ jsx(StyledDivider, {}),
599
+ /* @__PURE__ */ jsxs(StyledFooter, { children: [
600
+ /* @__PURE__ */ jsxs(StyledCredits, { children: [
601
+ /* @__PURE__ */ jsx(StyledCheckIcon, { viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsx(
602
+ "path",
603
+ {
604
+ d: "M3.33 10L8.33 15L16.67 5",
605
+ stroke: "#FFFFFF",
606
+ strokeWidth: "1.5",
607
+ strokeLinecap: "round",
608
+ strokeLinejoin: "round"
609
+ }
610
+ ) }),
611
+ /* @__PURE__ */ jsx(StyledCreditsText, { children: credits })
612
+ ] }),
613
+ /* @__PURE__ */ jsx(StyledExecutions, { children: executions })
614
+ ] })
615
+ ] });
616
+ }
617
+ var ChatInputContainer = styled50.div`
430
618
  display: flex;
431
619
  flex-direction: column;
432
620
  width: 100%;
@@ -442,7 +630,7 @@ var ChatInputContainer = styled48.div`
442
630
  padding: ${tokens.spacing.md};
443
631
  }
444
632
  `;
445
- var SuggestionsWrapper = styled48.div`
633
+ var SuggestionsWrapper = styled50.div`
446
634
  display: flex;
447
635
  flex-direction: row;
448
636
  flex-wrap: wrap;
@@ -451,7 +639,7 @@ var SuggestionsWrapper = styled48.div`
451
639
  width: 100%;
452
640
  box-sizing: border-box;
453
641
  `;
454
- var SuggestionButton = styled48.button`
642
+ var SuggestionButton = styled50.button`
455
643
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
456
644
  font-family: ${tokens.typography.fontFamily.primary};
457
645
  font-size: 13px;
@@ -490,7 +678,7 @@ var SuggestionButton = styled48.button`
490
678
  opacity: 0.4;
491
679
  }
492
680
  `;
493
- var InputWrapper = styled48.div`
681
+ var InputWrapper = styled50.div`
494
682
  display: flex;
495
683
  align-items: flex-end; /* Align button to bottom when textarea expands */
496
684
  gap: ${tokens.spacing.sm};
@@ -508,7 +696,7 @@ var InputWrapper = styled48.div`
508
696
  background-color: rgba(50, 50, 52, 0.6);
509
697
  }
510
698
  `;
511
- var InputField = styled48.textarea`
699
+ var InputField = styled50.textarea`
512
700
  flex: 1;
513
701
  border: none;
514
702
  outline: none;
@@ -533,7 +721,7 @@ var InputField = styled48.textarea`
533
721
  cursor: not-allowed;
534
722
  }
535
723
  `;
536
- var SubmitButton = styled48.button`
724
+ var SubmitButton = styled50.button`
537
725
  display: flex;
538
726
  align-items: center;
539
727
  justify-content: center;
@@ -714,7 +902,7 @@ var SubmitButtonComponent = ({
714
902
  ) });
715
903
  };
716
904
  ChatInput.displayName = "ChatInput";
717
- var NavigationContainer = styled48.div`
905
+ var NavigationContainer = styled50.div`
718
906
  display: flex;
719
907
  flex-direction: column;
720
908
  align-items: center;
@@ -731,7 +919,7 @@ var NavigationContainer = styled48.div`
731
919
  box-shadow: none !important;
732
920
  }
733
921
  `;
734
- var CategoryGroup = styled48.div`
922
+ var CategoryGroup = styled50.div`
735
923
  display: flex;
736
924
  flex-direction: column;
737
925
  align-items: center;
@@ -743,7 +931,7 @@ var CategoryGroup = styled48.div`
743
931
  border-radius: 0 !important;
744
932
  }
745
933
  `;
746
- var CategoryButton = styled48.button`
934
+ var CategoryButton = styled50.button`
747
935
  width: 48px;
748
936
  height: 48px;
749
937
  border: none;
@@ -768,7 +956,7 @@ var CategoryButton = styled48.button`
768
956
  outline-offset: 2px;
769
957
  }
770
958
  `;
771
- var CategoryLabel = styled48.span`
959
+ var CategoryLabel = styled50.span`
772
960
  font-size: 9px;
773
961
  color: ${tokens.colors.text.tertiary};
774
962
  margin-top: ${tokens.spacing.xs};
@@ -778,7 +966,7 @@ var CategoryLabel = styled48.span`
778
966
  text-overflow: ellipsis;
779
967
  white-space: nowrap;
780
968
  `;
781
- var SubItemList = styled48.div`
969
+ var SubItemList = styled50.div`
782
970
  display: ${({ $expanded }) => $expanded ? "flex" : "none"};
783
971
  flex-direction: column;
784
972
  align-items: center;
@@ -786,7 +974,7 @@ var SubItemList = styled48.div`
786
974
  margin-top: ${tokens.spacing.xs};
787
975
  width: 100%;
788
976
  `;
789
- var SubItemButton = styled48.button`
977
+ var SubItemButton = styled50.button`
790
978
  width: 32px;
791
979
  height: 32px;
792
980
  border: none;
@@ -810,7 +998,7 @@ var SubItemButton = styled48.button`
810
998
  outline-offset: 2px;
811
999
  }
812
1000
  `;
813
- var CountBadge = styled48.span`
1001
+ var CountBadge = styled50.span`
814
1002
  position: absolute;
815
1003
  top: -2px;
816
1004
  right: -2px;
@@ -836,7 +1024,7 @@ var filterBadgeIn = keyframes`
836
1024
  transform: scale(1);
837
1025
  }
838
1026
  `;
839
- var FilterBadge = styled48.div`
1027
+ var FilterBadge = styled50.div`
840
1028
  position: absolute;
841
1029
  bottom: -${tokens.spacing.xs};
842
1030
  right: -${tokens.spacing.xs};
@@ -855,13 +1043,13 @@ var FilterBadge = styled48.div`
855
1043
  fill: ${tokens.colors.text.primary};
856
1044
  }
857
1045
  `;
858
- var CategoryIconImg = styled48.img`
1046
+ var CategoryIconImg = styled50.img`
859
1047
  width: ${({ $size }) => $size || 24}px;
860
1048
  height: ${({ $size }) => $size || 24}px;
861
1049
  object-fit: contain;
862
1050
  filter: ${({ $active }) => $active ? "brightness(0) invert(1)" : "none"};
863
1051
  `;
864
- var SubItemIconImg = styled48.img`
1052
+ var SubItemIconImg = styled50.img`
865
1053
  width: ${({ $size }) => $size}px;
866
1054
  height: ${({ $size }) => $size}px;
867
1055
  object-fit: contain;
@@ -976,7 +1164,7 @@ function CategoryNav({
976
1164
  }) });
977
1165
  }
978
1166
  CategoryNav.displayName = "CategoryNav";
979
- var IconWrapper = styled48.span`
1167
+ var IconWrapper = styled50.span`
980
1168
  display: inline-flex;
981
1169
  align-items: center;
982
1170
  justify-content: center;
@@ -1022,6 +1210,7 @@ var IconNames = {
1022
1210
  FLOW_CHART: "flow-chart",
1023
1211
  LOGOUT_CIRCLE_R_FILL: "logout-circle-r-fill",
1024
1212
  LOGOUT_CIRCLE_R_LINE: "logout-circle-r-line",
1213
+ QUESTION_LINE: "question-line",
1025
1214
  SIDE_BAR_FILL: "side-bar-fill",
1026
1215
  CHECK: "check-fill",
1027
1216
  CHECK_CIRCLE: "checkbox-circle-fill",
@@ -1030,7 +1219,8 @@ var IconNames = {
1030
1219
  HAMMER: "hammer-fill",
1031
1220
  ROCKET: "rocket-fill",
1032
1221
  TICKET: "coupon-2-fill",
1033
- CLIPBOARD: "clipboard-fill"
1222
+ CLIPBOARD: "clipboard-fill",
1223
+ QUESTION_CIRCLE: "question-circle-line"
1034
1224
  };
1035
1225
  var iconFiles = {
1036
1226
  "mic-fill": "Icon-mic-fill.svg",
@@ -1048,6 +1238,7 @@ var iconFiles = {
1048
1238
  "flow-chart": "Icon-flow-chart.svg",
1049
1239
  "logout-circle-r-fill": "Icon-logout-circle-r-fill.svg",
1050
1240
  "logout-circle-r-line": "Icon-logout-circle-r-line.svg",
1241
+ "question-line": "Icon-question-line.svg",
1051
1242
  "side-bar-fill": "Icon-side-bar-fill.svg",
1052
1243
  "check-fill": "Icon-check-fill.svg",
1053
1244
  "checkbox-circle-fill": "Icon-checkbox-circle-fill.svg",
@@ -1056,7 +1247,8 @@ var iconFiles = {
1056
1247
  "hammer-fill": "Icon-hammer-fill.svg",
1057
1248
  "rocket-fill": "Icon-rocket-fill.svg",
1058
1249
  "coupon-2-fill": "Icon-coupon-2-fill.svg",
1059
- "clipboard-fill": "Icon-clipboard-fill.svg"
1250
+ "clipboard-fill": "Icon-clipboard-fill.svg",
1251
+ "question-circle-line": "Icon-question-circle-line.svg"
1060
1252
  };
1061
1253
  function getIconPath(name) {
1062
1254
  return `${ICON_BASE_PATH}/${iconFiles[name]}`;
@@ -1072,7 +1264,7 @@ function Icon({
1072
1264
  return /* @__PURE__ */ jsx(IconWrapper, { $size: size, $color: color, className, "aria-hidden": "true", children: /* @__PURE__ */ jsx("img", { src: iconPath, alt: "", width: size, height: size, ...imgProps }) });
1073
1265
  }
1074
1266
  Icon.displayName = "Icon";
1075
- var Container2 = styled48.nav`
1267
+ var Container2 = styled50.nav`
1076
1268
  position: absolute;
1077
1269
  bottom: 0;
1078
1270
  left: 0;
@@ -1092,7 +1284,7 @@ var Container2 = styled48.nav`
1092
1284
  background-color: ${tokens.colors.background.darkest};
1093
1285
  }
1094
1286
  `;
1095
- var ContentWrapper = styled48.div`
1287
+ var ContentWrapper = styled50.div`
1096
1288
  display: flex;
1097
1289
  justify-content: space-between;
1098
1290
  align-items: center;
@@ -1110,7 +1302,7 @@ var ContentWrapper = styled48.div`
1110
1302
  padding: 0 ${tokens.spacing.xs} 0 6px;
1111
1303
  }
1112
1304
  `;
1113
- var UserStatusSlot = styled48.div`
1305
+ var UserStatusSlot = styled50.div`
1114
1306
  display: flex;
1115
1307
  align-items: center;
1116
1308
  min-width: 0; /* Allow flex item to shrink */
@@ -1123,7 +1315,7 @@ var UserStatusSlot = styled48.div`
1123
1315
  white-space: nowrap;
1124
1316
  }
1125
1317
  `;
1126
- var ActionButtonsSlot = styled48.div`
1318
+ var ActionButtonsSlot = styled50.div`
1127
1319
  display: flex;
1128
1320
  align-items: center;
1129
1321
  gap: ${tokens.spacing.xs};
@@ -1146,7 +1338,7 @@ function NavHorizontal({
1146
1338
  ] }) });
1147
1339
  }
1148
1340
  NavHorizontal.displayName = "NavHorizontal";
1149
- var Container3 = styled48.nav`
1341
+ var Container3 = styled50.nav`
1150
1342
  position: absolute;
1151
1343
  top: 0;
1152
1344
  left: 0;
@@ -1156,17 +1348,10 @@ var Container3 = styled48.nav`
1156
1348
  display: flex;
1157
1349
  flex-direction: column;
1158
1350
  z-index: ${tokens.zIndex.base + 9}; /* Below horizontal nav and chat sidebar */
1159
- overflow-y: auto;
1160
- overflow-x: hidden;
1161
- scrollbar-width: none; /* Firefox */
1351
+ overflow: hidden;
1162
1352
  /* Use CSS custom property for coordinated animations with MainPane */
1163
1353
  transition: transform var(--layout-transition-duration, 0.3s) var(--layout-transition-easing, ease-out);
1164
1354
 
1165
- /* Hide scrollbar for Chrome, Safari and Opera */
1166
- &::-webkit-scrollbar {
1167
- display: none;
1168
- }
1169
-
1170
1355
  /* Dark theme support */
1171
1356
  @media (prefers-color-scheme: dark) {
1172
1357
  background-color: ${tokens.colors.background.darkest};
@@ -1177,31 +1362,12 @@ var Container3 = styled48.nav`
1177
1362
  width: 60px; /* Match MainPane left offset on mobile */
1178
1363
  }
1179
1364
 
1180
- /* Mobile landscape: allow content to overflow and scroll with thin scrollbar */
1365
+ /* Mobile landscape */
1181
1366
  @media (orientation: landscape) and (max-height: 500px) {
1182
1367
  width: 60px;
1183
- overflow-y: auto;
1184
- overflow-x: hidden;
1185
- scrollbar-width: thin; /* Firefox - show thin scrollbar */
1186
-
1187
- /* Show thin scrollbar for Chrome, Safari */
1188
- &::-webkit-scrollbar {
1189
- display: block;
1190
- width: 3px;
1191
- height: 3px;
1192
- }
1193
-
1194
- &::-webkit-scrollbar-track {
1195
- background: transparent;
1196
- }
1197
-
1198
- &::-webkit-scrollbar-thumb {
1199
- background: ${tokens.colors.border.default};
1200
- border-radius: 2px;
1201
- }
1202
1368
  }
1203
1369
  `;
1204
- var TopSection = styled48.div`
1370
+ var TopSection = styled50.div`
1205
1371
  display: flex;
1206
1372
  flex-direction: column;
1207
1373
  align-items: center;
@@ -1214,7 +1380,7 @@ var TopSection = styled48.div`
1214
1380
  height: 64px; /* Same as PaneSectionHeader on desktop */
1215
1381
  }
1216
1382
  `;
1217
- var BackButton = styled48.button`
1383
+ var BackButton = styled50.button`
1218
1384
  position: absolute;
1219
1385
  top: 50%;
1220
1386
  left: 50%;
@@ -1250,12 +1416,12 @@ var BackButton = styled48.button`
1250
1416
  outline-offset: 2px;
1251
1417
  }
1252
1418
  `;
1253
- styled48.span`
1419
+ styled50.span`
1254
1420
  font-size: ${tokens.typography.fontSize.xl};
1255
1421
  line-height: ${tokens.typography.lineHeight.tight};
1256
1422
  font-weight: ${tokens.typography.fontWeight.bold};
1257
1423
  `;
1258
- var Separator = styled48.div`
1424
+ var Separator = styled50.div`
1259
1425
  width: 32px;
1260
1426
  height: 2px;
1261
1427
  background-color: ${tokens.colors.background.light};
@@ -1263,14 +1429,15 @@ var Separator = styled48.div`
1263
1429
  margin: ${tokens.spacing.sm} auto ${tokens.spacing.md};
1264
1430
  border-radius: 1px;
1265
1431
  `;
1266
- var FolderGroupsSlot = styled48.div`
1432
+ var FolderGroupsSlot = styled50.div`
1267
1433
  display: flex;
1268
1434
  flex-direction: column;
1269
1435
  align-items: center;
1270
1436
  gap: ${tokens.spacing.sm};
1271
1437
  padding: 0 ${tokens.spacing.md} ${tokens.spacing.md};
1272
- flex: 1;
1273
- padding-bottom: 120px; /* Prevent overlap with bottom section (2 buttons @ 40px + 1 gap @ 8px + padding @ 32px) */
1438
+ flex: 1 1 0%; /* Take remaining space but shrink aggressively */
1439
+ min-height: 80px; /* At least show one category icon */
1440
+ overflow: hidden; /* Let NavigationContainer inside handle its own scroll */
1274
1441
 
1275
1442
  /* Server/workspace icons styling */
1276
1443
  > * {
@@ -1287,40 +1454,38 @@ var FolderGroupsSlot = styled48.div`
1287
1454
 
1288
1455
  /* Responsive adjustments */
1289
1456
  @media (max-width: ${tokens.breakpoints.tablet}px) {
1290
- padding: 0 6px ${tokens.spacing.md} 96px; /* Reduce horizontal padding on mobile */
1291
- }
1292
-
1293
- /* Mobile landscape: remove extra padding since BottomSection flows with content */
1294
- @media (orientation: landscape) and (max-height: 500px) {
1295
- padding-bottom: ${tokens.spacing.md};
1296
- flex: 0 0 auto; /* Don't flex-grow, allow natural height */
1457
+ padding: 0 6px ${tokens.spacing.md}; /* Reduce horizontal padding on mobile */
1297
1458
  }
1298
1459
  `;
1299
- var BottomSection = styled48.div`
1300
- position: absolute;
1301
- bottom: 0; /* At the bottom of the nav container */
1302
- left: 0;
1303
- right: 0;
1460
+ var BottomSection = styled50.div`
1461
+ flex: 0 1 auto; /* Natural size, can shrink when no space */
1462
+ min-height: 48px; /* At least one button visible */
1304
1463
  display: flex;
1305
1464
  flex-direction: column;
1306
1465
  align-items: center;
1307
1466
  gap: ${tokens.spacing.sm};
1308
1467
  padding: ${tokens.spacing.md} 0;
1309
- background-color: ${tokens.colors.background.darker};
1468
+ overflow-y: auto;
1469
+ overflow-x: hidden;
1310
1470
 
1311
- @media (prefers-color-scheme: dark) {
1312
- background-color: ${tokens.colors.background.darkest};
1471
+ /* Match NavigationContainer scroll styling */
1472
+ &::-webkit-scrollbar {
1473
+ width: 3px;
1313
1474
  }
1314
1475
 
1315
- /* Mobile landscape: make bottom section flow with content instead of fixed */
1316
- @media (orientation: landscape) and (max-height: 500px) {
1317
- position: relative;
1318
- bottom: auto;
1319
- margin-top: auto; /* Push to bottom of flex container */
1320
- flex-shrink: 0;
1476
+ &::-webkit-scrollbar-track {
1477
+ background: transparent;
1321
1478
  }
1479
+
1480
+ &::-webkit-scrollbar-thumb {
1481
+ background: ${tokens.colors.border.default};
1482
+ border-radius: 2px;
1483
+ }
1484
+
1485
+ scrollbar-width: thin;
1486
+ scrollbar-color: ${tokens.colors.border.default} transparent;
1322
1487
  `;
1323
- var BottomButton = styled48.button`
1488
+ var BottomButton = styled50.button`
1324
1489
  width: 40px;
1325
1490
  height: 40px;
1326
1491
  border-radius: ${tokens.borderRadius.full};
@@ -1356,6 +1521,7 @@ var BottomButton = styled48.button`
1356
1521
  function NavVertical({
1357
1522
  onBackClick,
1358
1523
  onHomeClick,
1524
+ onHelpClick,
1359
1525
  onSettingsClick,
1360
1526
  onLogoutClick,
1361
1527
  folderGroupsSlot,
@@ -1364,6 +1530,7 @@ function NavVertical({
1364
1530
  }) {
1365
1531
  const backButtonRef = useRef(null);
1366
1532
  const homeButtonRef = useRef(null);
1533
+ const helpButtonRef = useRef(null);
1367
1534
  const settingsButtonRef = useRef(null);
1368
1535
  const logoutButtonRef = useRef(null);
1369
1536
  const { buttonProps: backButtonProps } = useButton(
@@ -1380,6 +1547,13 @@ function NavVertical({
1380
1547
  },
1381
1548
  homeButtonRef
1382
1549
  );
1550
+ const { buttonProps: helpButtonProps } = useButton(
1551
+ {
1552
+ onPress: onHelpClick,
1553
+ "aria-label": "Help"
1554
+ },
1555
+ helpButtonRef
1556
+ );
1383
1557
  const { buttonProps: settingsButtonProps } = useButton(
1384
1558
  {
1385
1559
  onPress: onSettingsClick,
@@ -1394,18 +1568,20 @@ function NavVertical({
1394
1568
  },
1395
1569
  logoutButtonRef
1396
1570
  );
1571
+ const hasBottomButtons = onHelpClick || onSettingsClick || onLogoutClick;
1397
1572
  return /* @__PURE__ */ jsxs(Container3, { className, role: "navigation", "aria-label": ariaLabel, children: [
1398
1573
  /* @__PURE__ */ jsx(TopSection, { children: onBackClick ? /* @__PURE__ */ jsx(BackButton, { ...backButtonProps, ref: backButtonRef, children: /* @__PURE__ */ jsx(Icon, { name: "side-bar-fill", size: 20, color: "white" }) }) : onHomeClick ? /* @__PURE__ */ jsx(BackButton, { ...homeButtonProps, ref: homeButtonRef, children: /* @__PURE__ */ jsx(Icon, { name: "side-bar-fill", size: 24, color: "white" }) }) : null }),
1399
1574
  /* @__PURE__ */ jsx(Separator, {}),
1400
1575
  /* @__PURE__ */ jsx(FolderGroupsSlot, { children: folderGroupsSlot }),
1401
- (onSettingsClick || onLogoutClick) && /* @__PURE__ */ jsxs(BottomSection, { children: [
1576
+ hasBottomButtons && /* @__PURE__ */ jsxs(BottomSection, { children: [
1577
+ onHelpClick && /* @__PURE__ */ jsx(BottomButton, { ...helpButtonProps, ref: helpButtonRef, "data-tour-help-button": true, children: /* @__PURE__ */ jsx(Icon, { name: "question-circle-line", size: 24, color: "white" }) }),
1402
1578
  onSettingsClick && /* @__PURE__ */ jsx(BottomButton, { ...settingsButtonProps, ref: settingsButtonRef, children: /* @__PURE__ */ jsx(Icon, { name: "settings-3-line", size: 24, color: "white" }) }),
1403
1579
  onLogoutClick && /* @__PURE__ */ jsx(BottomButton, { ...logoutButtonProps, ref: logoutButtonRef, children: /* @__PURE__ */ jsx(Icon, { name: "logout-circle-r-line", size: 24, color: "white" }) })
1404
1580
  ] })
1405
1581
  ] });
1406
1582
  }
1407
1583
  NavVertical.displayName = "NavVertical";
1408
- var Container4 = styled48.div`
1584
+ var Container4 = styled50.div`
1409
1585
  position: relative;
1410
1586
  width: 100%;
1411
1587
  height: 100vh;
@@ -1418,7 +1594,7 @@ var Container4 = styled48.div`
1418
1594
  position: relative;
1419
1595
  }
1420
1596
  `;
1421
- var BackgroundPane = styled48.div`
1597
+ var BackgroundPane = styled50.div`
1422
1598
  position: absolute;
1423
1599
  top: 0;
1424
1600
  left: 72px; /* Width of vertical nav */
@@ -1459,7 +1635,7 @@ var BackgroundPane = styled48.div`
1459
1635
  left: 60px; /* Smaller nav on mobile */
1460
1636
  }
1461
1637
  `;
1462
- var MainPane = styled48.main`
1638
+ var MainPane = styled50.main`
1463
1639
  position: absolute;
1464
1640
  top: 0;
1465
1641
  left: 72px; /* Width of vertical nav */
@@ -1508,6 +1684,7 @@ function Layout({
1508
1684
  navHorizontalActionsSlot,
1509
1685
  onNavBackClick,
1510
1686
  onNavHomeClick,
1687
+ onNavHelpClick,
1511
1688
  onNavSettingsClick,
1512
1689
  onNavLogoutClick,
1513
1690
  className
@@ -1519,6 +1696,7 @@ function Layout({
1519
1696
  folderGroupsSlot: navVerticalSlot,
1520
1697
  onBackClick: onNavBackClick,
1521
1698
  onHomeClick: onNavHomeClick,
1699
+ onHelpClick: onNavHelpClick,
1522
1700
  onSettingsClick: onNavSettingsClick,
1523
1701
  onLogoutClick: onNavLogoutClick
1524
1702
  }
@@ -1535,13 +1713,13 @@ function Layout({
1535
1713
  ] });
1536
1714
  }
1537
1715
  Layout.displayName = "Layout";
1538
- var Container5 = styled48.div`
1716
+ var Container5 = styled50.div`
1539
1717
  display: flex;
1540
1718
  align-items: center;
1541
1719
  justify-content: flex-end;
1542
1720
  gap: ${tokens.spacing.xs};
1543
1721
  `;
1544
- var ActionButton = styled48.button`
1722
+ var ActionButton = styled50.button`
1545
1723
  width: ${({ $size = 32 }) => $size}px;
1546
1724
  height: ${({ $size = 32 }) => $size}px;
1547
1725
  min-width: ${({ $size = 32 }) => $size}px;
@@ -1646,7 +1824,7 @@ var statusColors = {
1646
1824
  busy: tokens.colors.status.busy,
1647
1825
  offline: tokens.colors.status.offline
1648
1826
  };
1649
- var Container6 = styled48.button`
1827
+ var Container6 = styled50.button`
1650
1828
  display: grid;
1651
1829
  grid-template-columns: auto 1fr;
1652
1830
  align-items: center;
@@ -1685,7 +1863,7 @@ var Container6 = styled48.button`
1685
1863
  opacity: 0.9;
1686
1864
  }
1687
1865
  `;
1688
- var IconWrapper2 = styled48.div`
1866
+ var IconWrapper2 = styled50.div`
1689
1867
  position: relative;
1690
1868
  width: 36px;
1691
1869
  height: 36px;
@@ -1696,13 +1874,13 @@ var IconWrapper2 = styled48.div`
1696
1874
  justify-content: center;
1697
1875
  flex-shrink: 0;
1698
1876
  `;
1699
- var WorkflowInfo = styled48.div`
1877
+ var WorkflowInfo = styled50.div`
1700
1878
  display: flex;
1701
1879
  flex-direction: column;
1702
1880
  gap: ${tokens.spacing.xs};
1703
1881
  min-width: 0;
1704
1882
  `;
1705
- var WorkflowName = styled48.span`
1883
+ var WorkflowName = styled50.span`
1706
1884
  color: ${tokens.colors.text.primary};
1707
1885
  font-size: ${tokens.typography.fontSize.sm};
1708
1886
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -1711,14 +1889,14 @@ var WorkflowName = styled48.span`
1711
1889
  text-overflow: ellipsis;
1712
1890
  white-space: nowrap;
1713
1891
  `;
1714
- var WorkflowStatus = styled48.span`
1892
+ var WorkflowStatus = styled50.span`
1715
1893
  color: ${tokens.colors.text.tertiary};
1716
1894
  font-size: ${tokens.typography.fontSize.xs};
1717
1895
  font-weight: ${tokens.typography.fontWeight.regular};
1718
1896
  line-height: ${tokens.typography.lineHeight.tight};
1719
1897
  text-transform: capitalize;
1720
1898
  `;
1721
- var WorkflowSubtitle = styled48.span`
1899
+ var WorkflowSubtitle = styled50.span`
1722
1900
  color: ${tokens.colors.text.tertiary};
1723
1901
  font-size: ${tokens.typography.fontSize.xs};
1724
1902
  font-weight: ${tokens.typography.fontWeight.regular};
@@ -1728,7 +1906,7 @@ var WorkflowSubtitle = styled48.span`
1728
1906
  text-overflow: ellipsis;
1729
1907
  white-space: nowrap;
1730
1908
  `;
1731
- var StatusIndicatorOuter = styled48.span`
1909
+ var StatusIndicatorOuter = styled50.span`
1732
1910
  position: absolute;
1733
1911
  bottom: -2px;
1734
1912
  right: -2px;
@@ -1740,7 +1918,7 @@ var StatusIndicatorOuter = styled48.span`
1740
1918
  align-items: center;
1741
1919
  justify-content: center;
1742
1920
  `;
1743
- var StatusIndicatorInner = styled48.span`
1921
+ var StatusIndicatorInner = styled50.span`
1744
1922
  width: 8px;
1745
1923
  height: 8px;
1746
1924
  border-radius: ${tokens.borderRadius.full};
@@ -1786,7 +1964,7 @@ function WorkflowStatusCard({
1786
1964
  ] });
1787
1965
  }
1788
1966
  WorkflowStatusCard.displayName = "WorkflowStatusCard";
1789
- var DarkNotificationCardContainer = styled48.div`
1967
+ var DarkNotificationCardContainer = styled50.div`
1790
1968
  display: flex;
1791
1969
  flex-direction: column;
1792
1970
  padding: ${tokens.spacing.xs};
@@ -1797,7 +1975,7 @@ var DarkNotificationCardContainer = styled48.div`
1797
1975
  min-width: 0;
1798
1976
  overflow: hidden;
1799
1977
  `;
1800
- var DarkSectionHeader = styled48.button`
1978
+ var DarkSectionHeader = styled50.button`
1801
1979
  display: flex;
1802
1980
  align-items: center;
1803
1981
  justify-content: space-between;
@@ -1823,7 +2001,7 @@ var DarkSectionHeader = styled48.button`
1823
2001
  border-radius: ${tokens.borderRadius.sm};
1824
2002
  }
1825
2003
  `;
1826
- var DarkChevronIcon = styled48.span`
2004
+ var DarkChevronIcon = styled50.span`
1827
2005
  display: inline-flex;
1828
2006
  align-items: center;
1829
2007
  justify-content: center;
@@ -1841,7 +2019,7 @@ var DarkChevronIcon = styled48.span`
1841
2019
  height: 12px;
1842
2020
  }
1843
2021
  `;
1844
- var DarkSectionContent = styled48.div`
2022
+ var DarkSectionContent = styled50.div`
1845
2023
  display: flex;
1846
2024
  flex-direction: column;
1847
2025
  gap: ${tokens.spacing.xs};
@@ -1850,7 +2028,7 @@ var DarkSectionContent = styled48.div`
1850
2028
  min-width: 0;
1851
2029
  overflow: hidden;
1852
2030
  `;
1853
- var DarkNotificationItemWrapper = styled48.button`
2031
+ var DarkNotificationItemWrapper = styled50.button`
1854
2032
  display: flex;
1855
2033
  align-items: center;
1856
2034
  gap: ${tokens.spacing.xs};
@@ -1889,7 +2067,7 @@ var DarkNotificationItemWrapper = styled48.button`
1889
2067
  opacity: 0.5;
1890
2068
  }
1891
2069
  `;
1892
- var DarkItemIcon = styled48.span`
2070
+ var DarkItemIcon = styled50.span`
1893
2071
  display: inline-flex;
1894
2072
  align-items: center;
1895
2073
  justify-content: center;
@@ -1914,7 +2092,7 @@ var DarkItemIcon = styled48.span`
1914
2092
  padding: ${tokens.spacing.xs};
1915
2093
  `}
1916
2094
  `;
1917
- var DarkItemText = styled48.span`
2095
+ var DarkItemText = styled50.span`
1918
2096
  flex: 1;
1919
2097
  font-family: ${tokens.typography.fontFamily.primary};
1920
2098
  font-size: 11px;
@@ -1926,7 +2104,7 @@ var DarkItemText = styled48.span`
1926
2104
  overflow: hidden;
1927
2105
  text-overflow: ellipsis;
1928
2106
  `;
1929
- var DarkMenuButton = styled48.button`
2107
+ var DarkMenuButton = styled50.button`
1930
2108
  display: inline-flex;
1931
2109
  align-items: center;
1932
2110
  justify-content: center;
@@ -1960,7 +2138,7 @@ var DarkMenuButton = styled48.button`
1960
2138
  height: 14px;
1961
2139
  }
1962
2140
  `;
1963
- var DarkTimestamp = styled48.span`
2141
+ var DarkTimestamp = styled50.span`
1964
2142
  font-size: 10px;
1965
2143
  color: ${tokens.colors.text.tertiary};
1966
2144
  white-space: normal;
@@ -2145,7 +2323,7 @@ var DarkNotificationItemComponent = ({
2145
2323
  );
2146
2324
  };
2147
2325
  DarkNotificationCard.displayName = "DarkNotificationCard";
2148
- var Container7 = styled48.div`
2326
+ var Container7 = styled50.div`
2149
2327
  width: 100%;
2150
2328
  height: 100%;
2151
2329
  background-color: transparent;
@@ -2155,7 +2333,7 @@ var Container7 = styled48.div`
2155
2333
  font-family: ${tokens.typography.fontFamily.primary};
2156
2334
  overflow: hidden; // Prevent content from escaping container bounds
2157
2335
  `;
2158
- var TabListWrapper = styled48.div`
2336
+ var TabListWrapper = styled50.div`
2159
2337
  display: flex;
2160
2338
  border-bottom: 2px solid ${tokens.colors.border.default};
2161
2339
  background-color: ${tokens.colors.surface.subtle};
@@ -2175,7 +2353,7 @@ var TabListWrapper = styled48.div`
2175
2353
  gap: ${tokens.spacing.xs};
2176
2354
  }
2177
2355
  `;
2178
- var TabButton = styled48.button`
2356
+ var TabButton = styled50.button`
2179
2357
  padding: ${tokens.spacing.md} ${tokens.spacing.lg};
2180
2358
  background: none;
2181
2359
  border: none;
@@ -2219,7 +2397,7 @@ var TabButton = styled48.button`
2219
2397
  }
2220
2398
  `}
2221
2399
  `;
2222
- var TabPanelWrapper = styled48.div`
2400
+ var TabPanelWrapper = styled50.div`
2223
2401
  flex: 1;
2224
2402
  padding: ${tokens.spacing.lg};
2225
2403
  overflow-y: auto;
@@ -2257,7 +2435,7 @@ var TabPanelWrapper = styled48.div`
2257
2435
  background: ${tokens.colors.scrollbar.thumbHover};
2258
2436
  }
2259
2437
  `;
2260
- var RunsContainer = styled48.div`
2438
+ var RunsContainer = styled50.div`
2261
2439
  display: flex;
2262
2440
  flex-direction: column;
2263
2441
  gap: ${tokens.spacing.lg};
@@ -2270,7 +2448,7 @@ var RunsContainer = styled48.div`
2270
2448
  gap: ${tokens.spacing.md};
2271
2449
  }
2272
2450
  `;
2273
- styled48.button`
2451
+ styled50.button`
2274
2452
  display: flex;
2275
2453
  align-items: center;
2276
2454
  gap: ${tokens.spacing.md};
@@ -2307,7 +2485,7 @@ styled48.button`
2307
2485
  outline-offset: 2px;
2308
2486
  }
2309
2487
  `;
2310
- var StyledDisclosureGroup = styled48(DisclosureGroup)`
2488
+ var StyledDisclosureGroup = styled50(DisclosureGroup)`
2311
2489
  display: flex;
2312
2490
  flex-direction: column;
2313
2491
  gap: ${tokens.spacing.sm};
@@ -2316,7 +2494,7 @@ var StyledDisclosureGroup = styled48(DisclosureGroup)`
2316
2494
  min-width: 0;
2317
2495
  overflow: hidden;
2318
2496
  `;
2319
- var CategoryDisclosure = styled48(Disclosure)`
2497
+ var CategoryDisclosure = styled50(Disclosure)`
2320
2498
  background-color: transparent;
2321
2499
  display: flex;
2322
2500
  flex-direction: column;
@@ -2334,7 +2512,7 @@ var CategoryDisclosure = styled48(Disclosure)`
2334
2512
  cursor: not-allowed;
2335
2513
  }
2336
2514
  `;
2337
- var CategoryHeader = styled48(Button)`
2515
+ var CategoryHeader = styled50(Button)`
2338
2516
  width: 100%;
2339
2517
  padding: ${tokens.spacing.xs} 0;
2340
2518
  background: none;
@@ -2364,7 +2542,7 @@ var CategoryHeader = styled48(Button)`
2364
2542
  border-radius: ${tokens.borderRadius.sm};
2365
2543
  }
2366
2544
  `;
2367
- var CategoryTitle = styled48.div`
2545
+ var CategoryTitle = styled50.div`
2368
2546
  display: flex;
2369
2547
  align-items: center;
2370
2548
  gap: ${tokens.spacing.sm};
@@ -2373,7 +2551,7 @@ var CategoryTitle = styled48.div`
2373
2551
  gap: ${tokens.spacing.xs};
2374
2552
  }
2375
2553
  `;
2376
- styled48.img`
2554
+ styled50.img`
2377
2555
  width: 16px;
2378
2556
  height: 16px;
2379
2557
  opacity: 0.6;
@@ -2384,7 +2562,7 @@ styled48.img`
2384
2562
  height: 14px;
2385
2563
  }
2386
2564
  `;
2387
- var HashtagIcon = styled48.img`
2565
+ var HashtagIcon = styled50.img`
2388
2566
  width: 14px;
2389
2567
  height: 14px;
2390
2568
  opacity: 0.6;
@@ -2395,7 +2573,7 @@ var HashtagIcon = styled48.img`
2395
2573
  height: 12px;
2396
2574
  }
2397
2575
  `;
2398
- var ChevronIcon = styled48.div`
2576
+ var ChevronIcon = styled50.div`
2399
2577
  display: flex;
2400
2578
  align-items: center;
2401
2579
  transition: transform ${tokens.transitions.normal};
@@ -2416,7 +2594,7 @@ var ChevronIcon = styled48.div`
2416
2594
  }
2417
2595
  }
2418
2596
  `;
2419
- var CategoryDisclosurePanel = styled48(DisclosurePanel)`
2597
+ var CategoryDisclosurePanel = styled50(DisclosurePanel)`
2420
2598
  display: flex;
2421
2599
  flex-direction: column;
2422
2600
  gap: 2px;
@@ -2445,7 +2623,7 @@ var CategoryDisclosurePanel = styled48(DisclosurePanel)`
2445
2623
  }
2446
2624
  }
2447
2625
  `;
2448
- var ItemContainer = styled48.div`
2626
+ var ItemContainer = styled50.div`
2449
2627
  display: flex;
2450
2628
  align-items: center;
2451
2629
  gap: ${tokens.spacing.sm};
@@ -2465,7 +2643,7 @@ var ItemContainer = styled48.div`
2465
2643
  background-color: ${tokens.colors.surface.overlayHover};
2466
2644
  }
2467
2645
  `;
2468
- var ItemDisclosure = styled48(Disclosure)`
2646
+ var ItemDisclosure = styled50(Disclosure)`
2469
2647
  background-color: transparent;
2470
2648
  margin-bottom: ${tokens.spacing.xs};
2471
2649
  display: flex;
@@ -2480,7 +2658,7 @@ var ItemDisclosure = styled48(Disclosure)`
2480
2658
  border-radius: ${tokens.borderRadius.md};
2481
2659
  }
2482
2660
  `;
2483
- var ItemHeader = styled48(Button)`
2661
+ var ItemHeader = styled50(Button)`
2484
2662
  width: 100%;
2485
2663
  padding: 0;
2486
2664
  background: none;
@@ -2498,7 +2676,7 @@ var ItemHeader = styled48(Button)`
2498
2676
  border-radius: ${tokens.borderRadius.sm};
2499
2677
  }
2500
2678
  `;
2501
- var ItemDisclosurePanel = styled48(DisclosurePanel)`
2679
+ var ItemDisclosurePanel = styled50(DisclosurePanel)`
2502
2680
  padding: ${tokens.spacing.xs};
2503
2681
  background-color: ${tokens.colors.overlay};
2504
2682
  border-radius: 0 0 ${tokens.borderRadius.md} ${tokens.borderRadius.md};
@@ -2528,7 +2706,7 @@ var ItemDisclosurePanel = styled48(DisclosurePanel)`
2528
2706
  }
2529
2707
  }
2530
2708
  `;
2531
- var ItemIcon = styled48.img`
2709
+ var ItemIcon = styled50.img`
2532
2710
  width: 20px;
2533
2711
  height: 20px;
2534
2712
  opacity: 0.6;
@@ -2539,7 +2717,7 @@ var ItemIcon = styled48.img`
2539
2717
  height: 18px;
2540
2718
  }
2541
2719
  `;
2542
- var ItemName = styled48.span`
2720
+ var ItemName = styled50.span`
2543
2721
  flex: 1;
2544
2722
  font-size: ${tokens.typography.fontSize.sm};
2545
2723
  color: ${(props) => props.$dimmed ? tokens.colors.text.tertiary : tokens.colors.text.secondary};
@@ -2557,7 +2735,7 @@ var ItemName = styled48.span`
2557
2735
  color: ${(props) => props.$dimmed ? tokens.colors.text.secondary : tokens.colors.text.primary};
2558
2736
  }
2559
2737
  `;
2560
- var RunStatus = styled48.span`
2738
+ var RunStatus = styled50.span`
2561
2739
  display: flex;
2562
2740
  align-items: center;
2563
2741
  justify-content: center;
@@ -2589,13 +2767,13 @@ var RunStatus = styled48.span`
2589
2767
  font-size: ${tokens.typography.fontSize.xs};
2590
2768
  }
2591
2769
  `;
2592
- styled48.div`
2770
+ styled50.div`
2593
2771
  margin-bottom: ${tokens.spacing.md};
2594
2772
  border-radius: ${tokens.borderRadius.lg};
2595
2773
  background-color: ${tokens.colors.surface.overlay};
2596
2774
  overflow: hidden;
2597
2775
  `;
2598
- styled48.button`
2776
+ styled50.button`
2599
2777
  width: 100%;
2600
2778
  padding: ${tokens.spacing.md};
2601
2779
  background: ${tokens.colors.surface.overlay};
@@ -2631,13 +2809,13 @@ styled48.button`
2631
2809
  margin-bottom: ${tokens.spacing.xs};
2632
2810
  }
2633
2811
  `;
2634
- styled48.span`
2812
+ styled50.span`
2635
2813
  font-size: ${tokens.typography.fontSize.xs};
2636
2814
  color: ${tokens.colors.text.secondary};
2637
2815
  transition: transform ${tokens.transitions.normal};
2638
2816
  transform: ${(props) => props.$isExpanded ? "rotate(180deg)" : "rotate(0deg)"};
2639
2817
  `;
2640
- styled48.div`
2818
+ styled50.div`
2641
2819
  padding: ${tokens.spacing.md};
2642
2820
  padding-top: 0;
2643
2821
  background-color: ${tokens.colors.overlay};
@@ -2657,17 +2835,17 @@ styled48.div`
2657
2835
  }
2658
2836
  }
2659
2837
  `;
2660
- var MeterContainer = styled48.div`
2838
+ var MeterContainer = styled50.div`
2661
2839
  max-width: 600px;
2662
2840
  margin: 0 auto;
2663
2841
  `;
2664
- var MeterLabel = styled48.div`
2842
+ var MeterLabel = styled50.div`
2665
2843
  font-size: ${tokens.typography.fontSize.base};
2666
2844
  font-weight: ${tokens.typography.fontWeight.semibold};
2667
2845
  margin-bottom: ${tokens.spacing.md};
2668
2846
  color: ${tokens.colors.text.primary};
2669
2847
  `;
2670
- var MeterBar = styled48.div`
2848
+ var MeterBar = styled50.div`
2671
2849
  width: 100%;
2672
2850
  height: 24px;
2673
2851
  background-color: ${tokens.colors.background.darker};
@@ -2676,7 +2854,7 @@ var MeterBar = styled48.div`
2676
2854
  position: relative;
2677
2855
  margin-bottom: ${tokens.spacing.md};
2678
2856
  `;
2679
- var MeterFill = styled48.div`
2857
+ var MeterFill = styled50.div`
2680
2858
  height: 100%;
2681
2859
  width: ${(props) => props.$percentage}%;
2682
2860
  background: linear-gradient(90deg, ${(props) => props.$color}dd, ${(props) => props.$color});
@@ -2704,7 +2882,7 @@ var MeterFill = styled48.div`
2704
2882
  }
2705
2883
  }
2706
2884
  `;
2707
- var MeterStats = styled48.div`
2885
+ var MeterStats = styled50.div`
2708
2886
  font-size: ${tokens.typography.fontSize.sm};
2709
2887
  color: ${tokens.colors.text.secondary};
2710
2888
  text-align: center;
@@ -2715,18 +2893,18 @@ var MeterStats = styled48.div`
2715
2893
  opacity: 0.8;
2716
2894
  }
2717
2895
  `;
2718
- var ConnectionsContainer = styled48.div`
2896
+ var ConnectionsContainer = styled50.div`
2719
2897
  max-width: 500px;
2720
2898
  margin: 0 auto;
2721
2899
  text-align: center;
2722
2900
  `;
2723
- var ConnectionDescription = styled48.p`
2901
+ var ConnectionDescription = styled50.p`
2724
2902
  font-size: ${tokens.typography.fontSize.sm};
2725
2903
  color: ${tokens.colors.text.secondary};
2726
2904
  line-height: ${tokens.typography.lineHeight.relaxed};
2727
2905
  margin-bottom: ${tokens.spacing.lg};
2728
2906
  `;
2729
- var GoogleButton = styled48.button`
2907
+ var GoogleButton = styled50.button`
2730
2908
  width: 100%;
2731
2909
  padding: ${tokens.spacing.md} ${tokens.spacing.lg};
2732
2910
  font-size: ${tokens.typography.fontSize.sm};
@@ -3180,7 +3358,7 @@ function PaneMenus({
3180
3358
  /* @__PURE__ */ jsx(TabPanel, { state }, state.selectedItem?.key)
3181
3359
  ] });
3182
3360
  }
3183
- var Container8 = styled48.header`
3361
+ var Container8 = styled50.header`
3184
3362
  position: relative;
3185
3363
  width: 100%;
3186
3364
  height: 56px;
@@ -3243,7 +3421,7 @@ var Container8 = styled48.header`
3243
3421
  background-color: ${tokens.colors.backdrop};
3244
3422
  }
3245
3423
  `;
3246
- var BrandLogo = styled48.img`
3424
+ var BrandLogo = styled50.img`
3247
3425
  position: relative;
3248
3426
  z-index: 1;
3249
3427
  max-height: 28px;
@@ -3258,7 +3436,7 @@ var BrandLogo = styled48.img`
3258
3436
  max-height: 32px;
3259
3437
  }
3260
3438
  `;
3261
- var SettingsButton = styled48.button`
3439
+ var SettingsButton = styled50.button`
3262
3440
  position: absolute;
3263
3441
  top: 50%;
3264
3442
  right: ${tokens.spacing.md};
@@ -3312,7 +3490,7 @@ var SettingsButton = styled48.button`
3312
3490
  right: ${tokens.spacing.lg};
3313
3491
  }
3314
3492
  `;
3315
- var BackButton2 = styled48.button`
3493
+ var BackButton2 = styled50.button`
3316
3494
  position: absolute;
3317
3495
  top: 50%;
3318
3496
  left: ${tokens.spacing.md};
@@ -3419,7 +3597,7 @@ function PaneSectionHeader({
3419
3597
  ] });
3420
3598
  }
3421
3599
  PaneSectionHeader.displayName = "PaneSectionHeader";
3422
- var Container9 = styled48.button`
3600
+ var Container9 = styled50.button`
3423
3601
  /* Base button styling */
3424
3602
  width: 48px;
3425
3603
  height: 48px;
@@ -3468,7 +3646,7 @@ var Container9 = styled48.button`
3468
3646
  cursor: not-allowed;
3469
3647
  }
3470
3648
  `;
3471
- var LogoImage = styled48.img`
3649
+ var LogoImage = styled50.img`
3472
3650
  width: 100%;
3473
3651
  height: 100%;
3474
3652
  object-fit: contain;
@@ -3487,7 +3665,7 @@ function ServiceIcon({ brand, active = false, className, ...ariaProps }) {
3487
3665
  return /* @__PURE__ */ jsx(Container9, { ...buttonProps, ref, $active: active, className, children: /* @__PURE__ */ jsx(LogoImage, { src: `/assets/icons/Brand/${brand}.svg`, alt: brand }) });
3488
3666
  }
3489
3667
  ServiceIcon.displayName = "ServiceIcon";
3490
- var NotificationCardContainer = styled48.div`
3668
+ var NotificationCardContainer = styled50.div`
3491
3669
  display: flex;
3492
3670
  flex-direction: column;
3493
3671
  width: 100%;
@@ -3498,7 +3676,7 @@ var NotificationCardContainer = styled48.div`
3498
3676
  box-shadow: ${tokens.shadows.card};
3499
3677
  gap: ${tokens.spacing.md};
3500
3678
  `;
3501
- var SectionHeader = styled48.button`
3679
+ var SectionHeader = styled50.button`
3502
3680
  display: flex;
3503
3681
  align-items: center;
3504
3682
  justify-content: space-between;
@@ -3524,7 +3702,7 @@ var SectionHeader = styled48.button`
3524
3702
  border-radius: ${tokens.borderRadius.md};
3525
3703
  }
3526
3704
  `;
3527
- var ChevronIcon2 = styled48.span`
3705
+ var ChevronIcon2 = styled50.span`
3528
3706
  display: inline-flex;
3529
3707
  align-items: center;
3530
3708
  justify-content: center;
@@ -3542,14 +3720,14 @@ var ChevronIcon2 = styled48.span`
3542
3720
  height: 16px;
3543
3721
  }
3544
3722
  `;
3545
- var SectionContent = styled48.div`
3723
+ var SectionContent = styled50.div`
3546
3724
  display: flex;
3547
3725
  flex-direction: column;
3548
3726
  gap: ${tokens.spacing.sm};
3549
3727
  padding-left: 0;
3550
3728
  margin-top: ${tokens.spacing.xs};
3551
3729
  `;
3552
- var NotificationItemWrapper = styled48.button`
3730
+ var NotificationItemWrapper = styled50.button`
3553
3731
  display: flex;
3554
3732
  align-items: center;
3555
3733
  gap: ${tokens.spacing.md};
@@ -3586,7 +3764,7 @@ var NotificationItemWrapper = styled48.button`
3586
3764
  opacity: 0.5;
3587
3765
  }
3588
3766
  `;
3589
- var ItemIcon2 = styled48.span`
3767
+ var ItemIcon2 = styled50.span`
3590
3768
  display: inline-flex;
3591
3769
  align-items: center;
3592
3770
  justify-content: center;
@@ -3611,7 +3789,7 @@ var ItemIcon2 = styled48.span`
3611
3789
  padding: ${tokens.spacing.xs};
3612
3790
  `}
3613
3791
  `;
3614
- var ItemText = styled48.span`
3792
+ var ItemText = styled50.span`
3615
3793
  flex: 1;
3616
3794
  font-family: ${tokens.typography.fontFamily.primary};
3617
3795
  font-size: 15px;
@@ -3620,7 +3798,7 @@ var ItemText = styled48.span`
3620
3798
  line-height: ${tokens.typography.lineHeight.normal};
3621
3799
  word-wrap: break-word;
3622
3800
  `;
3623
- var MenuButton = styled48.button`
3801
+ var MenuButton = styled50.button`
3624
3802
  display: inline-flex;
3625
3803
  align-items: center;
3626
3804
  justify-content: center;
@@ -3830,7 +4008,7 @@ var NotificationItemComponent = ({
3830
4008
  );
3831
4009
  };
3832
4010
  NotificationCard.displayName = "NotificationCard";
3833
- var StyledUserMessage = styled48.button`
4011
+ var StyledUserMessage = styled50.button`
3834
4012
  /* Base styles */
3835
4013
  display: inline-flex;
3836
4014
  align-items: center;
@@ -4170,7 +4348,7 @@ var ConnectionStatusBadge = ({
4170
4348
  );
4171
4349
  };
4172
4350
  ConnectionStatusBadge.displayName = "ConnectionStatusBadge";
4173
- var Badge = styled48.span`
4351
+ var Badge = styled50.span`
4174
4352
  display: inline-flex;
4175
4353
  align-items: center;
4176
4354
  padding: ${({ $size }) => $size === "sm" ? `${tokens.spacing.xs} 6px` : `${tokens.spacing.xs} ${tokens.spacing.sm}`};
@@ -4206,7 +4384,7 @@ var IntegrationCard = ({
4206
4384
  ] });
4207
4385
  };
4208
4386
  IntegrationCard.displayName = "IntegrationCard";
4209
- var Card = styled48.div`
4387
+ var Card = styled50.div`
4210
4388
  display: flex;
4211
4389
  flex-direction: column;
4212
4390
  gap: ${tokens.spacing.sm};
@@ -4226,11 +4404,11 @@ var Card = styled48.div`
4226
4404
  border-color: ${tokens.colors.border.hover};
4227
4405
  }
4228
4406
  `;
4229
- var StatusRow = styled48.div`
4407
+ var StatusRow = styled50.div`
4230
4408
  display: flex;
4231
4409
  align-items: center;
4232
4410
  `;
4233
- var ContentHeader = styled48.div`
4411
+ var ContentHeader = styled50.div`
4234
4412
  display: flex;
4235
4413
  align-items: flex-start;
4236
4414
  gap: ${tokens.spacing.sm};
@@ -4239,7 +4417,7 @@ var ContentHeader = styled48.div`
4239
4417
  gap: ${tokens.spacing.xs};
4240
4418
  }
4241
4419
  `;
4242
- var IconWrapper3 = styled48.div`
4420
+ var IconWrapper3 = styled50.div`
4243
4421
  width: 40px;
4244
4422
  height: 40px;
4245
4423
  display: flex;
@@ -4249,32 +4427,32 @@ var IconWrapper3 = styled48.div`
4249
4427
  background: ${tokens.colors.background.light};
4250
4428
  flex-shrink: 0;
4251
4429
  `;
4252
- var IconImage = styled48.img`
4430
+ var IconImage = styled50.img`
4253
4431
  width: 24px;
4254
4432
  height: 24px;
4255
4433
  object-fit: contain;
4256
4434
  `;
4257
- var Info = styled48.div`
4435
+ var Info = styled50.div`
4258
4436
  display: flex;
4259
4437
  flex-direction: column;
4260
4438
  gap: 2px;
4261
4439
  min-width: 0;
4262
4440
  flex: 1;
4263
4441
  `;
4264
- var Name = styled48.h3`
4442
+ var Name = styled50.h3`
4265
4443
  margin: 0;
4266
4444
  font-size: ${tokens.typography.fontSize.sm};
4267
4445
  font-weight: ${tokens.typography.fontWeight.semibold};
4268
4446
  color: ${tokens.colors.text.primary};
4269
4447
  line-height: ${tokens.typography.lineHeight.tight};
4270
4448
  `;
4271
- var Description = styled48.p`
4449
+ var Description = styled50.p`
4272
4450
  margin: 0;
4273
4451
  font-size: ${tokens.typography.fontSize.xs};
4274
4452
  color: ${tokens.colors.text.tertiary};
4275
4453
  line-height: ${tokens.typography.lineHeight.normal};
4276
4454
  `;
4277
- var ActionsRow = styled48.div`
4455
+ var ActionsRow = styled50.div`
4278
4456
  display: flex;
4279
4457
  flex-direction: column;
4280
4458
  gap: ${tokens.spacing.sm};
@@ -4332,14 +4510,14 @@ var SecretInput = ({
4332
4510
  ] });
4333
4511
  };
4334
4512
  SecretInput.displayName = "SecretInput";
4335
- var Container10 = styled48.div`
4513
+ var Container10 = styled50.div`
4336
4514
  position: relative;
4337
4515
  display: flex;
4338
4516
  align-items: center;
4339
4517
  width: 100%;
4340
4518
  min-width: 0;
4341
4519
  `;
4342
- var Input = styled48.input`
4520
+ var Input = styled50.input`
4343
4521
  width: 100%;
4344
4522
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
4345
4523
  padding-right: 40px;
@@ -4365,7 +4543,7 @@ var Input = styled48.input`
4365
4543
  cursor: not-allowed;
4366
4544
  }
4367
4545
  `;
4368
- var VisibilityToggle = styled48.button`
4546
+ var VisibilityToggle = styled50.button`
4369
4547
  position: absolute;
4370
4548
  right: ${tokens.spacing.sm};
4371
4549
  top: 50%;
@@ -4501,7 +4679,7 @@ function parseInlineMarkdown(text, startKey) {
4501
4679
  }
4502
4680
  return { elements, nextKey: key };
4503
4681
  }
4504
- var Container11 = styled48.div`
4682
+ var Container11 = styled50.div`
4505
4683
  font-family: ${(props) => props.$variant === "code" ? tokens.typography.fontFamily.monospace : tokens.typography.fontFamily.primary};
4506
4684
  white-space: pre-wrap;
4507
4685
  word-break: break-word;
@@ -4566,7 +4744,7 @@ var Container11 = styled48.div`
4566
4744
  h3 { font-size: 1.05em; font-weight: ${tokens.typography.fontWeight.semibold}; }
4567
4745
  h4 { font-size: 1em; font-weight: ${tokens.typography.fontWeight.semibold}; }
4568
4746
  `;
4569
- var Cursor = styled48.span`
4747
+ var Cursor = styled50.span`
4570
4748
  display: inline-block;
4571
4749
  width: 2px;
4572
4750
  height: 1em;
@@ -4622,7 +4800,7 @@ var StreamingTextBase = ({
4622
4800
  };
4623
4801
  var StreamingText = memo(StreamingTextBase);
4624
4802
  StreamingText.displayName = "StreamingText";
4625
- var MessageContainer = styled48.div`
4803
+ var MessageContainer = styled50.div`
4626
4804
  display: flex;
4627
4805
  flex-direction: column;
4628
4806
  gap: ${tokens.spacing.xs};
@@ -4632,20 +4810,20 @@ var MessageContainer = styled48.div`
4632
4810
  will-change: contents;
4633
4811
  contain: content;
4634
4812
  `;
4635
- var AvatarContainer = styled48.div`
4813
+ var AvatarContainer = styled50.div`
4636
4814
  display: flex;
4637
4815
  align-items: center;
4638
4816
  gap: ${tokens.spacing.xs};
4639
4817
  flex-shrink: 0;
4640
4818
  `;
4641
- var Avatar2 = styled48.img`
4819
+ var Avatar2 = styled50.img`
4642
4820
  width: 20px;
4643
4821
  height: 20px;
4644
4822
  border-radius: ${tokens.borderRadius.full};
4645
4823
  object-fit: cover;
4646
4824
  background-color: transparent;
4647
4825
  `;
4648
- var AvatarInitials = styled48.div`
4826
+ var AvatarInitials = styled50.div`
4649
4827
  width: 20px;
4650
4828
  height: 20px;
4651
4829
  border-radius: ${tokens.borderRadius.full};
@@ -4663,16 +4841,16 @@ var AvatarInitials = styled48.div`
4663
4841
  object-fit: contain;
4664
4842
  }
4665
4843
  `;
4666
- var AvatarLabel = styled48.span`
4844
+ var AvatarLabel = styled50.span`
4667
4845
  font-size: ${tokens.typography.fontSize.xs};
4668
4846
  font-weight: ${tokens.typography.fontWeight.medium};
4669
4847
  color: ${tokens.colors.text.secondary};
4670
4848
  `;
4671
- var ContentContainer = styled48.div`
4849
+ var ContentContainer = styled50.div`
4672
4850
  width: 100%;
4673
4851
  min-width: 0;
4674
4852
  `;
4675
- var MessageContent = styled48.div`
4853
+ var MessageContent = styled50.div`
4676
4854
  /* Use solid color instead of backdrop-filter for performance during streaming */
4677
4855
  background-color: ${tokens.colors.surface.elevated};
4678
4856
  padding: ${tokens.spacing.sm};
@@ -4686,7 +4864,7 @@ var MessageContent = styled48.div`
4686
4864
  /* Optimize text rendering */
4687
4865
  text-rendering: optimizeSpeed;
4688
4866
  `;
4689
- var LoadingDots2 = styled48.div`
4867
+ var LoadingDots2 = styled50.div`
4690
4868
  display: flex;
4691
4869
  gap: ${tokens.spacing.xs};
4692
4870
  padding: ${tokens.spacing.sm};
@@ -4703,7 +4881,7 @@ var pulse2 = keyframes`
4703
4881
  opacity: 1;
4704
4882
  }
4705
4883
  `;
4706
- var LoadingDot = styled48.div`
4884
+ var LoadingDot = styled50.div`
4707
4885
  width: ${tokens.spacing.sm};
4708
4886
  height: ${tokens.spacing.sm};
4709
4887
  border-radius: ${tokens.borderRadius.full};
@@ -4712,7 +4890,7 @@ var LoadingDot = styled48.div`
4712
4890
  animation: ${pulse2} 1.4s ease-in-out infinite;
4713
4891
  animation-delay: ${(props) => props.delay}s;
4714
4892
  `;
4715
- var FileAttachmentContainer = styled48.div`
4893
+ var FileAttachmentContainer = styled50.div`
4716
4894
  display: flex;
4717
4895
  align-items: center;
4718
4896
  gap: ${tokens.spacing.sm};
@@ -4748,7 +4926,7 @@ var FileAttachmentContainer = styled48.div`
4748
4926
  }
4749
4927
  `}
4750
4928
  `;
4751
- var FileIconContainer = styled48.div`
4929
+ var FileIconContainer = styled50.div`
4752
4930
  flex-shrink: 0;
4753
4931
  width: ${tokens.spacing.xl};
4754
4932
  height: ${tokens.spacing.xl};
@@ -4758,14 +4936,14 @@ var FileIconContainer = styled48.div`
4758
4936
  font-size: ${tokens.typography.fontSize["2xl"]};
4759
4937
  line-height: 1;
4760
4938
  `;
4761
- var FileInfo = styled48.div`
4939
+ var FileInfo = styled50.div`
4762
4940
  flex: 1;
4763
4941
  min-width: 0;
4764
4942
  display: flex;
4765
4943
  flex-direction: column;
4766
4944
  gap: 2px;
4767
4945
  `;
4768
- var FileTitle = styled48.div`
4946
+ var FileTitle = styled50.div`
4769
4947
  font-size: ${tokens.typography.fontSize.sm};
4770
4948
  font-weight: ${tokens.typography.fontWeight.medium};
4771
4949
  color: ${tokens.colors.text.primary};
@@ -4775,7 +4953,7 @@ var FileTitle = styled48.div`
4775
4953
  text-overflow: ellipsis;
4776
4954
  white-space: nowrap;
4777
4955
  `;
4778
- var FileMetadata = styled48.div`
4956
+ var FileMetadata = styled50.div`
4779
4957
  display: flex;
4780
4958
  align-items: center;
4781
4959
  gap: ${tokens.spacing.xs};
@@ -4785,7 +4963,7 @@ var FileMetadata = styled48.div`
4785
4963
  line-height: ${tokens.typography.lineHeight.tight};
4786
4964
  overflow: hidden;
4787
4965
  `;
4788
- var FileSubtitle = styled48.span`
4966
+ var FileSubtitle = styled50.span`
4789
4967
  color: ${tokens.colors.text.tertiary};
4790
4968
  white-space: nowrap;
4791
4969
  overflow: hidden;
@@ -4841,13 +5019,13 @@ var FileAttachment = ({
4841
5019
  }
4842
5020
  );
4843
5021
  };
4844
- var AttachmentsContainer = styled48.div`
5022
+ var AttachmentsContainer = styled50.div`
4845
5023
  display: flex;
4846
5024
  flex-direction: column;
4847
5025
  gap: ${tokens.spacing.sm};
4848
5026
  margin-top: ${tokens.spacing.sm};
4849
5027
  `;
4850
- var ActionButton2 = styled48.button`
5028
+ var ActionButton2 = styled50.button`
4851
5029
  display: inline-flex;
4852
5030
  align-items: center;
4853
5031
  gap: ${tokens.spacing.xs};
@@ -4871,19 +5049,19 @@ var ActionButton2 = styled48.button`
4871
5049
  transform: scale(0.98);
4872
5050
  }
4873
5051
  `;
4874
- var ActionsContainer = styled48.div`
5052
+ var ActionsContainer = styled50.div`
4875
5053
  display: flex;
4876
5054
  gap: ${tokens.spacing.xs};
4877
5055
  flex-wrap: wrap;
4878
5056
  margin-top: ${tokens.spacing.sm};
4879
5057
  `;
4880
- var MessageTime = styled48.time`
5058
+ var MessageTime = styled50.time`
4881
5059
  font-size: ${tokens.typography.fontSize.xs};
4882
5060
  color: ${tokens.colors.text.tertiary};
4883
5061
  margin-top: ${tokens.spacing.xs};
4884
5062
  display: block;
4885
5063
  `;
4886
- var StreamingIndicator = styled48.span`
5064
+ var StreamingIndicator = styled50.span`
4887
5065
  display: inline-block;
4888
5066
  width: ${tokens.spacing.xs};
4889
5067
  height: ${tokens.spacing.xs};
@@ -4976,13 +5154,14 @@ function stripToolCallMarkers(content) {
4976
5154
  stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
4977
5155
  stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
4978
5156
  stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
5157
+ stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
4979
5158
  return stripped.trim();
4980
5159
  }
4981
- var GenerativeUIContainer = styled48.div`
5160
+ var GenerativeUIContainer = styled50.div`
4982
5161
  margin-top: ${tokens.spacing.sm};
4983
5162
  margin-bottom: ${tokens.spacing.sm};
4984
5163
  `;
4985
- styled48.div`
5164
+ styled50.div`
4986
5165
  display: flex;
4987
5166
  align-items: center;
4988
5167
  gap: ${tokens.spacing.sm};
@@ -4994,12 +5173,12 @@ styled48.div`
4994
5173
  font-size: ${tokens.typography.fontSize.xs};
4995
5174
  color: ${tokens.colors.text.secondary};
4996
5175
  `;
4997
- styled48.span`
5176
+ styled50.span`
4998
5177
  display: flex;
4999
5178
  align-items: center;
5000
5179
  color: ${tokens.colors.primary};
5001
5180
  `;
5002
- styled48.span`
5181
+ styled50.span`
5003
5182
  font-weight: ${tokens.typography.fontWeight.medium};
5004
5183
  color: ${tokens.colors.text.primary};
5005
5184
  `;
@@ -5140,7 +5319,7 @@ var sizeStyles = {
5140
5319
  height: 44px;
5141
5320
  `
5142
5321
  };
5143
- var StyledButton = styled48.button`
5322
+ var StyledButton = styled50.button`
5144
5323
  /* Base styles */
5145
5324
  display: inline-flex;
5146
5325
  align-items: center;
@@ -5223,7 +5402,7 @@ function Button2({
5223
5402
  );
5224
5403
  }
5225
5404
  Button2.displayName = "Button";
5226
- var ActionsContainer2 = styled48.div`
5405
+ var ActionsContainer2 = styled50.div`
5227
5406
  display: flex;
5228
5407
  gap: ${tokens.spacing.sm};
5229
5408
  align-items: center;
@@ -5283,7 +5462,7 @@ var blink = keyframes`
5283
5462
  opacity: 0;
5284
5463
  }
5285
5464
  `;
5286
- var ResponseContainer = styled48.div`
5465
+ var ResponseContainer = styled50.div`
5287
5466
  display: inline-flex;
5288
5467
  align-items: center;
5289
5468
  gap: ${tokens.spacing.sm};
@@ -5295,13 +5474,13 @@ var ResponseContainer = styled48.div`
5295
5474
  max-width: fit-content;
5296
5475
  margin: 0 auto;
5297
5476
  `;
5298
- var LoadingDots3 = styled48.div`
5477
+ var LoadingDots3 = styled50.div`
5299
5478
  display: flex;
5300
5479
  align-items: center;
5301
5480
  gap: ${tokens.spacing.xs};
5302
5481
  padding: 0 ${tokens.spacing.xs};
5303
5482
  `;
5304
- var Dot2 = styled48.span`
5483
+ var Dot2 = styled50.span`
5305
5484
  width: ${tokens.spacing.xs};
5306
5485
  height: ${tokens.spacing.xs};
5307
5486
  border-radius: ${tokens.borderRadius.full};
@@ -5309,7 +5488,7 @@ var Dot2 = styled48.span`
5309
5488
  animation: ${dotPulse2} 1.4s ease-in-out infinite;
5310
5489
  animation-delay: ${(props) => props.delay}s;
5311
5490
  `;
5312
- var TypingIndicator = styled48.div`
5491
+ var TypingIndicator = styled50.div`
5313
5492
  display: flex;
5314
5493
  align-items: center;
5315
5494
  gap: ${tokens.spacing.xs};
@@ -5322,14 +5501,14 @@ var TypingIndicator = styled48.div`
5322
5501
  animation: ${dotPulse2} 1.4s ease-in-out infinite;
5323
5502
  }
5324
5503
  `;
5325
- var Message2 = styled48.span`
5504
+ var Message2 = styled50.span`
5326
5505
  font-size: ${tokens.typography.fontSize.sm};
5327
5506
  color: ${tokens.colors.text.primary};
5328
5507
  font-weight: ${tokens.typography.fontWeight.regular};
5329
5508
  line-height: ${tokens.typography.lineHeight.normal};
5330
5509
  white-space: nowrap;
5331
5510
  `;
5332
- var StreamingText2 = styled48.div`
5511
+ var StreamingText2 = styled50.div`
5333
5512
  font-size: ${tokens.typography.fontSize.sm};
5334
5513
  line-height: ${tokens.typography.lineHeight.normal};
5335
5514
  color: ${tokens.colors.text.primary};
@@ -5401,7 +5580,7 @@ var shake = keyframes`
5401
5580
  transform: translateX(5px);
5402
5581
  }
5403
5582
  `;
5404
- var AgentStateContainer = styled48.div`
5583
+ var AgentStateContainer = styled50.div`
5405
5584
  display: inline-flex;
5406
5585
  flex-direction: column;
5407
5586
  align-items: center;
@@ -5415,35 +5594,35 @@ var AgentStateContainer = styled48.div`
5415
5594
  max-width: fit-content;
5416
5595
  margin: 0 auto;
5417
5596
  `;
5418
- var StateContent = styled48.div`
5597
+ var StateContent = styled50.div`
5419
5598
  display: flex;
5420
5599
  flex-direction: column;
5421
5600
  gap: ${tokens.spacing.sm};
5422
5601
  align-items: center;
5423
5602
  width: 100%;
5424
5603
  `;
5425
- var IdleIndicator = styled48.div`
5604
+ var IdleIndicator = styled50.div`
5426
5605
  width: ${tokens.spacing.xs};
5427
5606
  height: ${tokens.spacing.xs};
5428
5607
  background-color: ${tokens.colors.status.idle};
5429
5608
  border-radius: ${tokens.borderRadius.full};
5430
5609
  animation: ${dotPulse3} 2s infinite ease-in-out;
5431
5610
  `;
5432
- var ErrorIndicator = styled48.div`
5611
+ var ErrorIndicator = styled50.div`
5433
5612
  width: ${tokens.spacing.xs};
5434
5613
  height: ${tokens.spacing.xs};
5435
5614
  background-color: ${tokens.colors.error};
5436
5615
  border-radius: ${tokens.borderRadius.full};
5437
5616
  animation: ${shake} 0.5s ease-in-out;
5438
5617
  `;
5439
- var StateLabel = styled48.span`
5618
+ var StateLabel = styled50.span`
5440
5619
  font-size: ${tokens.typography.fontSize.sm};
5441
5620
  font-weight: ${tokens.typography.fontWeight.regular};
5442
5621
  color: ${tokens.colors.text.primary};
5443
5622
  line-height: ${tokens.typography.lineHeight.normal};
5444
5623
  white-space: nowrap;
5445
5624
  `;
5446
- styled48.p`
5625
+ styled50.p`
5447
5626
  font-size: ${tokens.typography.fontSize.sm};
5448
5627
  color: ${tokens.colors.text.tertiary};
5449
5628
  line-height: ${tokens.typography.lineHeight.normal};
@@ -5451,7 +5630,7 @@ styled48.p`
5451
5630
  text-align: center;
5452
5631
  white-space: nowrap;
5453
5632
  `;
5454
- var ProgressBar = styled48.div`
5633
+ var ProgressBar = styled50.div`
5455
5634
  width: 100%;
5456
5635
  height: ${tokens.spacing.xs};
5457
5636
  background-color: ${tokens.colors.surface.elevated};
@@ -5459,7 +5638,7 @@ var ProgressBar = styled48.div`
5459
5638
  overflow: hidden;
5460
5639
  margin-top: ${tokens.spacing.xs};
5461
5640
  `;
5462
- var ProgressBarFill = styled48.div`
5641
+ var ProgressBarFill = styled50.div`
5463
5642
  height: 100%;
5464
5643
  width: ${(props) => Math.min(Math.max(props.progress, 0), 100)}%;
5465
5644
  background: linear-gradient(135deg, ${tokens.colors.accent} 0%, ${tokens.colors.primary} 100%);
@@ -5488,7 +5667,7 @@ var AgentState = ({ state, message, progress, className }) => {
5488
5667
  }
5489
5668
  return null;
5490
5669
  };
5491
- var FooterContainer = styled48.footer`
5670
+ var FooterContainer = styled50.footer`
5492
5671
  display: flex;
5493
5672
  align-items: center;
5494
5673
  justify-content: center;
@@ -5497,7 +5676,7 @@ var FooterContainer = styled48.footer`
5497
5676
  border-top: 1px solid ${tokens.colors.border.default};
5498
5677
  min-height: 44px;
5499
5678
  `;
5500
- var FooterContent = styled48.div`
5679
+ var FooterContent = styled50.div`
5501
5680
  display: flex;
5502
5681
  align-items: center;
5503
5682
  justify-content: space-between;
@@ -5510,13 +5689,13 @@ var FooterContent = styled48.div`
5510
5689
  font-family: ${tokens.typography.fontFamily.primary};
5511
5690
  line-height: ${tokens.typography.lineHeight.tight};
5512
5691
  `;
5513
- var FooterBranding = styled48.div`
5692
+ var FooterBranding = styled50.div`
5514
5693
  display: flex;
5515
5694
  align-items: center;
5516
5695
  gap: ${tokens.spacing.xs};
5517
5696
  flex-shrink: 0;
5518
5697
  `;
5519
- var FooterStatus = styled48.div`
5698
+ var FooterStatus = styled50.div`
5520
5699
  display: flex;
5521
5700
  align-items: center;
5522
5701
  gap: ${tokens.spacing.xs};
@@ -5526,7 +5705,7 @@ var FooterStatus = styled48.div`
5526
5705
  font-size: ${tokens.typography.fontSize.xs};
5527
5706
  opacity: 0.8;
5528
5707
  `;
5529
- var FooterLink = styled48.a`
5708
+ var FooterLink = styled50.a`
5530
5709
  color: ${tokens.colors.primary};
5531
5710
  text-decoration: none;
5532
5711
  transition: opacity ${tokens.transitions.fast};
@@ -5584,7 +5763,7 @@ var pulse3 = keyframes`
5584
5763
  transform: scale(1.1);
5585
5764
  }
5586
5765
  `;
5587
- var Container12 = styled48.div`
5766
+ var Container12 = styled50.div`
5588
5767
  display: inline-flex;
5589
5768
  align-items: center;
5590
5769
  gap: ${(props) => {
@@ -5600,7 +5779,7 @@ var Container12 = styled48.div`
5600
5779
  }};
5601
5780
  font-family: ${tokens.typography.fontFamily.primary};
5602
5781
  `;
5603
- var StatusDot = styled48.div`
5782
+ var StatusDot = styled50.div`
5604
5783
  width: ${(props) => {
5605
5784
  if (props.variant === "badge") {
5606
5785
  switch (props.size) {
@@ -5661,7 +5840,7 @@ var StatusDot = styled48.div`
5661
5840
  animation: ${(props) => props.status === "streaming" ? pulse3 : "none"} 2s ease-in-out infinite;
5662
5841
  flex-shrink: 0;
5663
5842
  `;
5664
- var Label = styled48.span`
5843
+ var Label = styled50.span`
5665
5844
  font-size: ${(props) => {
5666
5845
  if (props.variant === "badge") {
5667
5846
  switch (props.size) {
@@ -5688,7 +5867,7 @@ var Label = styled48.span`
5688
5867
  color: ${tokens.colors.text.secondary};
5689
5868
  line-height: ${tokens.typography.lineHeight.tight};
5690
5869
  `;
5691
- var BadgeContainer = styled48.div`
5870
+ var BadgeContainer = styled50.div`
5692
5871
  display: inline-flex;
5693
5872
  align-items: center;
5694
5873
  gap: ${(props) => {
@@ -5765,7 +5944,7 @@ var StreamStatusIndicator = ({
5765
5944
  return /* @__PURE__ */ jsx(Container12, { size, className, role: "status", "aria-label": getStatusLabel(status), children: content });
5766
5945
  };
5767
5946
  StreamStatusIndicator.displayName = "StreamStatusIndicator";
5768
- var HeaderContainer = styled48.header`
5947
+ var HeaderContainer = styled50.header`
5769
5948
  display: flex;
5770
5949
  align-items: center;
5771
5950
  justify-content: space-between;
@@ -5781,14 +5960,14 @@ var HeaderContainer = styled48.header`
5781
5960
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
5782
5961
  }
5783
5962
  `;
5784
- var HeaderContent = styled48.div`
5963
+ var HeaderContent = styled50.div`
5785
5964
  display: flex;
5786
5965
  flex-direction: column;
5787
5966
  gap: ${tokens.spacing.xs};
5788
5967
  flex: 1;
5789
5968
  min-width: 0;
5790
5969
  `;
5791
- var HeaderTitle = styled48.h1`
5970
+ var HeaderTitle = styled50.h1`
5792
5971
  margin: 0;
5793
5972
  font-size: ${tokens.typography.fontSize.base};
5794
5973
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -5799,7 +5978,7 @@ var HeaderTitle = styled48.h1`
5799
5978
  text-overflow: ellipsis;
5800
5979
  white-space: nowrap;
5801
5980
  `;
5802
- var HeaderSubtitle = styled48.p`
5981
+ var HeaderSubtitle = styled50.p`
5803
5982
  margin: 0;
5804
5983
  font-size: ${tokens.typography.fontSize.sm};
5805
5984
  color: ${tokens.colors.text.secondary};
@@ -5809,13 +5988,13 @@ var HeaderSubtitle = styled48.p`
5809
5988
  text-overflow: ellipsis;
5810
5989
  white-space: nowrap;
5811
5990
  `;
5812
- var HeaderActions = styled48.div`
5991
+ var HeaderActions = styled50.div`
5813
5992
  display: flex;
5814
5993
  align-items: center;
5815
5994
  gap: ${tokens.spacing.xs};
5816
5995
  margin-left: ${tokens.spacing.md};
5817
5996
  `;
5818
- var ActionButton3 = styled48.button`
5997
+ var ActionButton3 = styled50.button`
5819
5998
  display: inline-flex;
5820
5999
  align-items: center;
5821
6000
  justify-content: center;
@@ -5932,13 +6111,13 @@ var Header = ({
5932
6111
  ] });
5933
6112
  };
5934
6113
  Header.displayName = "Header";
5935
- var InputContainer = styled48.div`
6114
+ var InputContainer = styled50.div`
5936
6115
  display: flex;
5937
6116
  flex-direction: column;
5938
6117
  width: 100%;
5939
6118
  position: relative;
5940
6119
  `;
5941
- var InputWrapper2 = styled48.div`
6120
+ var InputWrapper2 = styled50.div`
5942
6121
  display: flex;
5943
6122
  align-items: flex-end;
5944
6123
  gap: ${tokens.spacing.sm};
@@ -5958,7 +6137,7 @@ var InputWrapper2 = styled48.div`
5958
6137
  border-color: ${tokens.colors.border.subtle};
5959
6138
  }
5960
6139
  `;
5961
- var TextArea = styled48.textarea`
6140
+ var TextArea = styled50.textarea`
5962
6141
  flex: 1;
5963
6142
  min-height: ${tokens.spacing.lg};
5964
6143
  max-height: ${(props) => `${(props.$maxRows || 5) * 24}px`};
@@ -6004,7 +6183,7 @@ var TextArea = styled48.textarea`
6004
6183
  background: ${tokens.colors.scrollbar.thumbHover};
6005
6184
  }
6006
6185
  `;
6007
- var SendButton = styled48.button`
6186
+ var SendButton = styled50.button`
6008
6187
  display: flex;
6009
6188
  align-items: center;
6010
6189
  justify-content: center;
@@ -6134,7 +6313,7 @@ var Input2 = ({
6134
6313
  )
6135
6314
  ] }) });
6136
6315
  };
6137
- var MessagesContainer = styled48.div`
6316
+ var MessagesContainer = styled50.div`
6138
6317
  display: flex;
6139
6318
  flex-direction: column;
6140
6319
  flex: 1;
@@ -6163,7 +6342,7 @@ var Messages = ({
6163
6342
  return /* @__PURE__ */ jsx(MessagesContainer, { className, role: "region", "aria-label": ariaLabel, children });
6164
6343
  };
6165
6344
  Messages.displayName = "Messages";
6166
- var MessagesListContainer = styled48.div`
6345
+ var MessagesListContainer = styled50.div`
6167
6346
  display: flex;
6168
6347
  flex-direction: column;
6169
6348
  width: 100%;
@@ -6203,7 +6382,7 @@ var MessagesListContainer = styled48.div`
6203
6382
  /* Ensure proper rendering on mobile */
6204
6383
  -webkit-overflow-scrolling: touch;
6205
6384
  `;
6206
- var MessagesListContent = styled48.div`
6385
+ var MessagesListContent = styled50.div`
6207
6386
  display: flex;
6208
6387
  flex-direction: column;
6209
6388
  gap: ${tokens.spacing.sm};
@@ -6319,7 +6498,7 @@ var MessagesList = ({
6319
6498
  }
6320
6499
  );
6321
6500
  };
6322
- var StyledUserMessage2 = styled48.div`
6501
+ var StyledUserMessage2 = styled50.div`
6323
6502
  display: flex;
6324
6503
  justify-content: flex-end;
6325
6504
  align-items: flex-start;
@@ -6327,7 +6506,7 @@ var StyledUserMessage2 = styled48.div`
6327
6506
  padding: 0;
6328
6507
  width: 100%;
6329
6508
  `;
6330
- var MessageBubble = styled48.div`
6509
+ var MessageBubble = styled50.div`
6331
6510
  display: flex;
6332
6511
  flex-direction: column;
6333
6512
  max-width: 85%;
@@ -6354,7 +6533,7 @@ var MessageBubble = styled48.div`
6354
6533
  opacity: 0.9;
6355
6534
  }
6356
6535
  `;
6357
- var MessageContent2 = styled48.p`
6536
+ var MessageContent2 = styled50.p`
6358
6537
  margin: 0;
6359
6538
  font-size: ${tokens.typography.fontSize.sm};
6360
6539
  line-height: ${tokens.typography.lineHeight.normal};
@@ -6363,13 +6542,13 @@ var MessageContent2 = styled48.p`
6363
6542
  word-break: break-word;
6364
6543
  white-space: pre-wrap;
6365
6544
  `;
6366
- var MessageTime2 = styled48.time`
6545
+ var MessageTime2 = styled50.time`
6367
6546
  font-size: ${tokens.typography.fontSize.xs};
6368
6547
  opacity: 0.7;
6369
6548
  margin-top: ${tokens.spacing.xs};
6370
6549
  text-align: right;
6371
6550
  `;
6372
- var ActionButton4 = styled48.button`
6551
+ var ActionButton4 = styled50.button`
6373
6552
  display: inline-flex;
6374
6553
  align-items: center;
6375
6554
  gap: ${tokens.spacing.xs};
@@ -6393,12 +6572,12 @@ var ActionButton4 = styled48.button`
6393
6572
  transform: scale(0.98);
6394
6573
  }
6395
6574
  `;
6396
- var ActionsContainer3 = styled48.div`
6575
+ var ActionsContainer3 = styled50.div`
6397
6576
  display: flex;
6398
6577
  gap: ${tokens.spacing.xs};
6399
6578
  flex-wrap: wrap;
6400
6579
  `;
6401
- var Avatar3 = styled48.img`
6580
+ var Avatar3 = styled50.img`
6402
6581
  width: ${tokens.spacing.xl};
6403
6582
  height: ${tokens.spacing.xl};
6404
6583
  border-radius: ${tokens.borderRadius.full};
@@ -6437,7 +6616,7 @@ var UserMessage2 = ({
6437
6616
  avatarUrl && /* @__PURE__ */ jsx(Avatar3, { src: avatarUrl, alt: username || "User" })
6438
6617
  ] });
6439
6618
  };
6440
- var ErrorContainer = styled48.div`
6619
+ var ErrorContainer = styled50.div`
6441
6620
  display: flex;
6442
6621
  align-items: flex-start;
6443
6622
  gap: ${tokens.spacing.sm};
@@ -6451,7 +6630,7 @@ var ErrorContainer = styled48.div`
6451
6630
  width: ${(props) => props.variant === "banner" ? "100%" : "auto"};
6452
6631
  max-width: ${(props) => props.variant === "banner" ? "100%" : "600px"};
6453
6632
  `;
6454
- var IconContainer = styled48.div`
6633
+ var IconContainer = styled50.div`
6455
6634
  flex-shrink: 0;
6456
6635
  width: 20px;
6457
6636
  height: 20px;
@@ -6468,29 +6647,29 @@ var ErrorIcon = () => /* @__PURE__ */ jsx(
6468
6647
  children: /* @__PURE__ */ jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" })
6469
6648
  }
6470
6649
  );
6471
- var Content2 = styled48.div`
6650
+ var Content2 = styled50.div`
6472
6651
  flex: 1;
6473
6652
  display: flex;
6474
6653
  flex-direction: column;
6475
6654
  gap: ${tokens.spacing.sm};
6476
6655
  `;
6477
- var ErrorMessage = styled48.div`
6656
+ var ErrorMessage = styled50.div`
6478
6657
  font-size: ${tokens.typography.fontSize.sm};
6479
6658
  line-height: ${tokens.typography.lineHeight.normal};
6480
6659
  color: ${tokens.colors.text.primary};
6481
6660
  `;
6482
- var ErrorDetails = styled48.div`
6661
+ var ErrorDetails = styled50.div`
6483
6662
  font-size: ${tokens.typography.fontSize.xs};
6484
6663
  line-height: 1.4;
6485
6664
  color: ${tokens.colors.text.secondary};
6486
6665
  margin-top: ${tokens.spacing.xs};
6487
6666
  `;
6488
- var Actions2 = styled48.div`
6667
+ var Actions2 = styled50.div`
6489
6668
  display: flex;
6490
6669
  gap: ${tokens.spacing.sm};
6491
6670
  margin-top: ${tokens.spacing.sm};
6492
6671
  `;
6493
- var Button3 = styled48.button`
6672
+ var Button3 = styled50.button`
6494
6673
  display: inline-flex;
6495
6674
  align-items: center;
6496
6675
  gap: ${tokens.spacing.xs};
@@ -6519,7 +6698,7 @@ var Button3 = styled48.button`
6519
6698
  cursor: not-allowed;
6520
6699
  }
6521
6700
  `;
6522
- var CloseButton = styled48.button`
6701
+ var CloseButton = styled50.button`
6523
6702
  flex-shrink: 0;
6524
6703
  width: 24px;
6525
6704
  height: 24px;
@@ -6578,7 +6757,7 @@ var StreamErrorMessage = ({
6578
6757
  ] });
6579
6758
  };
6580
6759
  StreamErrorMessage.displayName = "StreamErrorMessage";
6581
- var SuggestionsContainer = styled48.div`
6760
+ var SuggestionsContainer = styled50.div`
6582
6761
  display: flex;
6583
6762
  flex-wrap: nowrap; /* Single row */
6584
6763
  gap: ${tokens.spacing.sm};
@@ -6611,7 +6790,7 @@ var SuggestionsContainer = styled48.div`
6611
6790
  display: none; /* Chrome/Safari/Opera */
6612
6791
  }
6613
6792
  `;
6614
- var StyledSuggestion = styled48.button`
6793
+ var StyledSuggestion = styled50.button`
6615
6794
  /* Base styles */
6616
6795
  display: inline-flex;
6617
6796
  align-items: center;
@@ -6684,7 +6863,7 @@ function SuggestionChip({ suggestion, onSelect }) {
6684
6863
  return /* @__PURE__ */ jsx(StyledSuggestion, { ...buttonProps, ref, $isPressed: isPressed, role: "listitem", children: suggestion });
6685
6864
  }
6686
6865
  Suggestions.displayName = "Suggestions";
6687
- var WindowContainer = styled48.div`
6866
+ var WindowContainer = styled50.div`
6688
6867
  display: flex;
6689
6868
  flex-direction: column;
6690
6869
  /* Glassmorphism effect */
@@ -6863,7 +7042,7 @@ function FacebookIcon({
6863
7042
  ) });
6864
7043
  }
6865
7044
  FacebookIcon.displayName = "FacebookIcon";
6866
- var StyledIconWrapper = styled48.button`
7045
+ var StyledIconWrapper = styled50.button`
6867
7046
  display: inline-flex;
6868
7047
  align-items: center;
6869
7048
  justify-content: center;
@@ -7133,7 +7312,7 @@ function InstagramIcon({
7133
7312
  ] });
7134
7313
  }
7135
7314
  InstagramIcon.displayName = "InstagramIcon";
7136
- var StyledIconWrapper2 = styled48.button`
7315
+ var StyledIconWrapper2 = styled50.button`
7137
7316
  display: inline-flex;
7138
7317
  align-items: center;
7139
7318
  justify-content: center;
@@ -7269,7 +7448,7 @@ function LinkedInIcon({
7269
7448
  return /* @__PURE__ */ jsx("span", { className, style: { display: "inline-flex", width: size, height: size }, children: svgElement });
7270
7449
  }
7271
7450
  LinkedInIcon.displayName = "LinkedInIcon";
7272
- var StyledIconWrapper3 = styled48.button`
7451
+ var StyledIconWrapper3 = styled50.button`
7273
7452
  display: inline-flex;
7274
7453
  align-items: center;
7275
7454
  justify-content: center;
@@ -7906,7 +8085,7 @@ function WhatsAppIcon({
7906
8085
  );
7907
8086
  }
7908
8087
  WhatsAppIcon.displayName = "WhatsAppIcon";
7909
- var StyledXIcon = styled48.svg`
8088
+ var StyledXIcon = styled50.svg`
7910
8089
  display: inline-block;
7911
8090
  vertical-align: middle;
7912
8091
  flex-shrink: 0;
@@ -8322,7 +8501,7 @@ var PostApprovalControls = ({
8322
8501
  ] });
8323
8502
  };
8324
8503
  PostApprovalControls.displayName = "PostApprovalControls";
8325
- var Container13 = styled48.div`
8504
+ var Container13 = styled50.div`
8326
8505
  display: grid;
8327
8506
  gap: 0;
8328
8507
  background: ${tokens.colors.background.dark};
@@ -8332,7 +8511,7 @@ var Container13 = styled48.div`
8332
8511
  font-family: ${tokens.typography.fontFamily.primary};
8333
8512
  transition: border-color ${tokens.transitions.fast};
8334
8513
  `;
8335
- var Header2 = styled48.div`
8514
+ var Header2 = styled50.div`
8336
8515
  display: grid;
8337
8516
  grid-template-columns: auto 1fr auto;
8338
8517
  align-items: center;
@@ -8346,7 +8525,7 @@ var Header2 = styled48.div`
8346
8525
  background: ${tokens.colors.background.light};
8347
8526
  }
8348
8527
  `;
8349
- var StatusBadge = styled48.span`
8528
+ var StatusBadge = styled50.span`
8350
8529
  padding: ${tokens.spacing.xs} ${tokens.spacing.sm};
8351
8530
  border-radius: ${tokens.borderRadius.sm};
8352
8531
  font-size: ${tokens.typography.fontSize.xs};
@@ -8357,23 +8536,23 @@ var StatusBadge = styled48.span`
8357
8536
  color: ${({ $color }) => $color};
8358
8537
  white-space: nowrap;
8359
8538
  `;
8360
- var MetaInfo = styled48.div`
8539
+ var MetaInfo = styled50.div`
8361
8540
  display: flex;
8362
8541
  align-items: center;
8363
8542
  gap: ${tokens.spacing.sm};
8364
8543
  min-width: 0;
8365
8544
  `;
8366
- var PostId = styled48.span`
8545
+ var PostId = styled50.span`
8367
8546
  font-size: ${tokens.typography.fontSize.xs};
8368
8547
  color: ${tokens.colors.text.tertiary};
8369
8548
  font-family: ${tokens.typography.fontFamily.monospace};
8370
8549
  `;
8371
- var ErrorText = styled48.span`
8550
+ var ErrorText = styled50.span`
8372
8551
  font-size: ${tokens.typography.fontSize.xs};
8373
8552
  color: ${tokens.colors.error};
8374
8553
  line-height: ${tokens.typography.lineHeight.tight};
8375
8554
  `;
8376
- var CollapseIcon = styled48.span`
8555
+ var CollapseIcon = styled50.span`
8377
8556
  font-size: ${tokens.typography.fontSize.sm};
8378
8557
  color: ${tokens.colors.text.tertiary};
8379
8558
  font-weight: ${tokens.typography.fontWeight.medium};
@@ -8383,17 +8562,17 @@ var CollapseIcon = styled48.span`
8383
8562
  align-items: center;
8384
8563
  justify-content: center;
8385
8564
  `;
8386
- var Content3 = styled48.div`
8565
+ var Content3 = styled50.div`
8387
8566
  display: grid;
8388
8567
  gap: ${tokens.spacing.md};
8389
8568
  padding: ${tokens.spacing.md};
8390
8569
  border-top: 1px solid ${tokens.colors.border.default};
8391
8570
  `;
8392
- var EditSection = styled48.div`
8571
+ var EditSection = styled50.div`
8393
8572
  display: grid;
8394
8573
  gap: ${tokens.spacing.xs};
8395
8574
  `;
8396
- var EditLabel = styled48.label`
8575
+ var EditLabel = styled50.label`
8397
8576
  display: grid;
8398
8577
  grid-template-columns: 1fr auto;
8399
8578
  align-items: center;
@@ -8402,7 +8581,7 @@ var EditLabel = styled48.label`
8402
8581
  color: ${tokens.colors.text.secondary};
8403
8582
  line-height: ${tokens.typography.lineHeight.tight};
8404
8583
  `;
8405
- var CharCount = styled48.span`
8584
+ var CharCount = styled50.span`
8406
8585
  font-size: ${tokens.typography.fontSize.xs};
8407
8586
  font-weight: ${tokens.typography.fontWeight.semibold};
8408
8587
  font-family: ${tokens.typography.fontFamily.monospace};
@@ -8412,7 +8591,7 @@ var CharCount = styled48.span`
8412
8591
  return tokens.colors.success;
8413
8592
  }};
8414
8593
  `;
8415
- var EditTextarea = styled48.textarea`
8594
+ var EditTextarea = styled50.textarea`
8416
8595
  width: 100%;
8417
8596
  min-height: 100px;
8418
8597
  padding: ${tokens.spacing.sm};
@@ -8442,14 +8621,14 @@ var EditTextarea = styled48.textarea`
8442
8621
  color: ${tokens.colors.text.tertiary};
8443
8622
  }
8444
8623
  `;
8445
- var ProgressBar2 = styled48.div`
8624
+ var ProgressBar2 = styled50.div`
8446
8625
  width: 100%;
8447
8626
  height: 3px;
8448
8627
  background: ${tokens.colors.border.default};
8449
8628
  border-radius: ${tokens.borderRadius.sm};
8450
8629
  overflow: hidden;
8451
8630
  `;
8452
- var ProgressFill = styled48.div`
8631
+ var ProgressFill = styled50.div`
8453
8632
  width: ${({ $percentage }) => $percentage}%;
8454
8633
  height: 100%;
8455
8634
  border-radius: ${tokens.borderRadius.sm};
@@ -8460,12 +8639,12 @@ var ProgressFill = styled48.div`
8460
8639
  return tokens.colors.success;
8461
8640
  }};
8462
8641
  `;
8463
- var Actions3 = styled48.div`
8642
+ var Actions3 = styled50.div`
8464
8643
  display: flex;
8465
8644
  gap: ${tokens.spacing.sm};
8466
8645
  justify-content: flex-end;
8467
8646
  `;
8468
- var ActionButton5 = styled48.button`
8647
+ var ActionButton5 = styled50.button`
8469
8648
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
8470
8649
  border-radius: ${tokens.borderRadius.md};
8471
8650
  font-size: ${tokens.typography.fontSize.sm};
@@ -8699,7 +8878,7 @@ var fadeIn2 = keyframes`
8699
8878
  transform: translateY(0);
8700
8879
  }
8701
8880
  `;
8702
- var CardContainer = styled48.div`
8881
+ var CardContainer = styled50.div`
8703
8882
  background: ${tokens.colors.background.dark};
8704
8883
  border-radius: ${tokens.borderRadius.xl};
8705
8884
  padding: ${tokens.spacing.md};
@@ -8712,7 +8891,7 @@ var CardContainer = styled48.div`
8712
8891
  border-color: ${({ $platformColor }) => `${$platformColor}80`};
8713
8892
  }
8714
8893
  `;
8715
- var PlatformHeader = styled48.div`
8894
+ var PlatformHeader = styled50.div`
8716
8895
  display: flex;
8717
8896
  align-items: center;
8718
8897
  gap: 10px;
@@ -8720,7 +8899,7 @@ var PlatformHeader = styled48.div`
8720
8899
  padding-bottom: ${tokens.spacing.sm};
8721
8900
  border-bottom: 1px solid ${tokens.colors.border.default};
8722
8901
  `;
8723
- var PlatformIcon = styled48.span`
8902
+ var PlatformIcon = styled50.span`
8724
8903
  display: flex;
8725
8904
  align-items: center;
8726
8905
  justify-content: center;
@@ -8732,13 +8911,13 @@ var PlatformIcon = styled48.span`
8732
8911
  font-size: ${tokens.typography.fontSize.base};
8733
8912
  font-weight: ${tokens.typography.fontWeight.semibold};
8734
8913
  `;
8735
- var PlatformName = styled48.span`
8914
+ var PlatformName = styled50.span`
8736
8915
  flex: 1;
8737
8916
  font-size: ${tokens.typography.fontSize.sm};
8738
8917
  font-weight: ${tokens.typography.fontWeight.semibold};
8739
8918
  color: ${tokens.colors.text.primary};
8740
8919
  `;
8741
- var CharacterBadge = styled48.span`
8920
+ var CharacterBadge = styled50.span`
8742
8921
  padding: ${tokens.spacing.xs} ${tokens.spacing.sm};
8743
8922
  border-radius: ${tokens.borderRadius.lg};
8744
8923
  font-size: 11px;
@@ -8750,10 +8929,10 @@ var CharacterBadge = styled48.span`
8750
8929
  return tokens.colors.success;
8751
8930
  }};
8752
8931
  `;
8753
- var ContentSection = styled48.div`
8932
+ var ContentSection = styled50.div`
8754
8933
  margin-bottom: ${tokens.spacing.sm};
8755
8934
  `;
8756
- var PostContent = styled48.div`
8935
+ var PostContent = styled50.div`
8757
8936
  font-size: ${tokens.typography.fontSize.base};
8758
8937
  font-family: ${tokens.typography.fontFamily.primary};
8759
8938
  line-height: 1.6;
@@ -8765,7 +8944,7 @@ var PostContent = styled48.div`
8765
8944
  /* Smooth fade-in animation when content appears */
8766
8945
  animation: ${fadeIn2} 0.4s ease-out;
8767
8946
  `;
8768
- var PostContentEditable = styled48.textarea`
8947
+ var PostContentEditable = styled50.textarea`
8769
8948
  width: 100%;
8770
8949
  min-height: 180px;
8771
8950
  max-height: 300px;
@@ -8794,12 +8973,12 @@ var PostContentEditable = styled48.textarea`
8794
8973
  color: ${tokens.colors.text.tertiary};
8795
8974
  }
8796
8975
  `;
8797
- var HashtagsContainer = styled48.div`
8976
+ var HashtagsContainer = styled50.div`
8798
8977
  display: flex;
8799
8978
  flex-wrap: wrap;
8800
8979
  gap: 6px;
8801
8980
  `;
8802
- var HashtagPill = styled48.span`
8981
+ var HashtagPill = styled50.span`
8803
8982
  display: inline-block;
8804
8983
  padding: ${tokens.spacing.xs} 10px;
8805
8984
  border-radius: ${tokens.borderRadius.full};
@@ -8816,17 +8995,17 @@ var HashtagPill = styled48.span`
8816
8995
  color: ${tokens.colors.primary};
8817
8996
  }
8818
8997
  `;
8819
- var ProgressBarContainer = styled48.div`
8998
+ var ProgressBarContainer = styled50.div`
8820
8999
  margin-top: ${tokens.spacing.sm};
8821
9000
  `;
8822
- var ProgressBarTrack = styled48.div`
9001
+ var ProgressBarTrack = styled50.div`
8823
9002
  width: 100%;
8824
9003
  height: 4px;
8825
9004
  background: ${tokens.colors.border.default};
8826
9005
  border-radius: ${tokens.borderRadius.sm};
8827
9006
  overflow: hidden;
8828
9007
  `;
8829
- var ProgressBarFill2 = styled48.div`
9008
+ var ProgressBarFill2 = styled50.div`
8830
9009
  width: ${({ $percentage }) => $percentage}%;
8831
9010
  height: 100%;
8832
9011
  border-radius: ${tokens.borderRadius.sm};
@@ -8837,7 +9016,7 @@ var ProgressBarFill2 = styled48.div`
8837
9016
  return tokens.colors.success;
8838
9017
  }};
8839
9018
  `;
8840
- var ImageChangeButton = styled48.button`
9019
+ var ImageChangeButton = styled50.button`
8841
9020
  display: block;
8842
9021
  width: 100%;
8843
9022
  padding: 0;
@@ -8846,21 +9025,21 @@ var ImageChangeButton = styled48.button`
8846
9025
  cursor: pointer;
8847
9026
  -webkit-tap-highlight-color: transparent;
8848
9027
  `;
8849
- var ImagePreviewContainer = styled48.div`
9028
+ var ImagePreviewContainer = styled50.div`
8850
9029
  position: relative;
8851
9030
  margin-bottom: ${tokens.spacing.sm};
8852
9031
  border-radius: ${tokens.borderRadius.sm};
8853
9032
  overflow: hidden;
8854
9033
  border: 1px solid ${tokens.colors.border.default};
8855
9034
  `;
8856
- var ImagePreview = styled48.img`
9035
+ var ImagePreview = styled50.img`
8857
9036
  width: 100%;
8858
9037
  height: auto;
8859
9038
  max-height: 200px;
8860
9039
  object-fit: cover;
8861
9040
  display: block;
8862
9041
  `;
8863
- var ImageOverlay = styled48.div`
9042
+ var ImageOverlay = styled50.div`
8864
9043
  position: absolute;
8865
9044
  inset: 0;
8866
9045
  background: rgba(0, 0, 0, 0.5);
@@ -8879,12 +9058,12 @@ var ImageOverlay = styled48.div`
8879
9058
  opacity: 0.6;
8880
9059
  }
8881
9060
  `;
8882
- var OverlayText = styled48.span`
9061
+ var OverlayText = styled50.span`
8883
9062
  color: white;
8884
9063
  font-size: ${tokens.typography.fontSize.sm};
8885
9064
  font-weight: ${tokens.typography.fontWeight.semibold};
8886
9065
  `;
8887
- var ImagePlaceholder = styled48.div`
9066
+ var ImagePlaceholder = styled50.div`
8888
9067
  width: 100%;
8889
9068
  height: 200px;
8890
9069
  background: linear-gradient(
@@ -8914,7 +9093,7 @@ var ImagePlaceholder = styled48.div`
8914
9093
  }
8915
9094
  `}
8916
9095
  `;
8917
- var PlaceholderIcon = styled48.div`
9096
+ var PlaceholderIcon = styled50.div`
8918
9097
  width: 48px;
8919
9098
  height: 48px;
8920
9099
  border: 2px solid white;
@@ -8936,13 +9115,13 @@ var shimmer = keyframes`
8936
9115
  background-position: 200% 0;
8937
9116
  }
8938
9117
  `;
8939
- var SkeletonContent = styled48.div`
9118
+ var SkeletonContent = styled50.div`
8940
9119
  display: flex;
8941
9120
  flex-direction: column;
8942
9121
  gap: ${tokens.spacing.sm};
8943
9122
  padding: ${tokens.spacing.sm} 0;
8944
9123
  `;
8945
- var SkeletonLine = styled48.div`
9124
+ var SkeletonLine = styled50.div`
8946
9125
  height: 16px;
8947
9126
  width: ${({ $width }) => $width};
8948
9127
  background: linear-gradient(
@@ -9043,13 +9222,13 @@ var PlatformCarousel = ({
9043
9222
  ] });
9044
9223
  };
9045
9224
  PlatformCarousel.displayName = "PlatformCarousel";
9046
- var CarouselContainer = styled48.div`
9225
+ var CarouselContainer = styled50.div`
9047
9226
  display: flex;
9048
9227
  flex-direction: column;
9049
9228
  width: 100%;
9050
9229
  gap: ${tokens.spacing.md};
9051
9230
  `;
9052
- var TabsContainer = styled48.div`
9231
+ var TabsContainer = styled50.div`
9053
9232
  display: flex;
9054
9233
  gap: ${tokens.spacing.sm};
9055
9234
  padding: ${tokens.spacing.sm};
@@ -9063,7 +9242,7 @@ var TabsContainer = styled48.div`
9063
9242
  display: none;
9064
9243
  }
9065
9244
  `;
9066
- var PlatformTab = styled48.button`
9245
+ var PlatformTab = styled50.button`
9067
9246
  display: flex;
9068
9247
  align-items: center;
9069
9248
  gap: ${tokens.spacing.xs};
@@ -9089,37 +9268,36 @@ var PlatformTab = styled48.button`
9089
9268
  box-shadow: 0 0 0 2px ${({ $platformColor }) => $platformColor}40;
9090
9269
  }
9091
9270
  `;
9092
- var PlatformIcon2 = styled48.span`
9271
+ var PlatformIcon2 = styled50.span`
9093
9272
  font-size: ${tokens.typography.fontSize.base};
9094
9273
  color: ${({ $platformColor }) => $platformColor};
9095
9274
  transition: color ${tokens.transitions.fast};
9096
9275
  `;
9097
- var ContentContainer2 = styled48.div`
9276
+ var ContentContainer2 = styled50.div`
9098
9277
  position: relative;
9099
9278
  min-height: 200px;
9100
9279
  overflow: hidden;
9101
- /* Padding to prevent card borders/shadows from being clipped */
9102
- padding: 0 ${tokens.spacing.xs};
9103
- margin: 0 -${tokens.spacing.xs};
9104
9280
  `;
9105
- var Slide = styled48.div`
9281
+ var Slide = styled50.div`
9106
9282
  position: ${({ $isActive }) => $isActive ? "relative" : "absolute"};
9107
9283
  top: 0;
9108
9284
  left: 0;
9109
9285
  width: 100%;
9286
+ padding: 8px;
9287
+ box-sizing: border-box;
9110
9288
  opacity: ${({ $isActive }) => $isActive ? 1 : 0};
9111
9289
  transform: ${({ $isActive }) => $isActive ? "translateX(0)" : "translateX(20px)"};
9112
9290
  transition: opacity ${tokens.animation.duration.short} ${tokens.animation.easing.smooth},
9113
9291
  transform ${tokens.animation.duration.short} ${tokens.animation.easing.smooth};
9114
9292
  pointer-events: ${({ $isActive }) => $isActive ? "auto" : "none"};
9115
9293
  `;
9116
- var NavigationDotsContainer = styled48.div`
9294
+ var NavigationDotsContainer = styled50.div`
9117
9295
  display: flex;
9118
9296
  justify-content: center;
9119
9297
  gap: ${tokens.spacing.xs};
9120
9298
  padding: ${tokens.spacing.sm};
9121
9299
  `;
9122
- var NavigationDot = styled48.button`
9300
+ var NavigationDot = styled50.button`
9123
9301
  width: ${tokens.spacing.sm};
9124
9302
  height: ${tokens.spacing.sm};
9125
9303
  border-radius: ${tokens.borderRadius.full};
@@ -9139,7 +9317,7 @@ var NavigationDot = styled48.button`
9139
9317
  box-shadow: 0 0 0 2px ${({ $platformColor }) => $platformColor}40;
9140
9318
  }
9141
9319
  `;
9142
- var EmptyState = styled48.div`
9320
+ var EmptyState = styled50.div`
9143
9321
  display: flex;
9144
9322
  align-items: center;
9145
9323
  justify-content: center;
@@ -9198,10 +9376,12 @@ var PlatformGrid = ({
9198
9376
  }) });
9199
9377
  };
9200
9378
  PlatformGrid.displayName = "PlatformGrid";
9201
- var Grid = styled48.div`
9379
+ var Grid = styled50.div`
9202
9380
  display: grid;
9203
9381
  gap: ${tokens.spacing.md};
9204
9382
  width: 100%;
9383
+ padding: 8px;
9384
+ box-sizing: border-box;
9205
9385
 
9206
9386
  /* Mobile: 1 column */
9207
9387
  grid-template-columns: 1fr;
@@ -9216,7 +9396,7 @@ var Grid = styled48.div`
9216
9396
  grid-template-columns: repeat(3, 1fr);
9217
9397
  }
9218
9398
  `;
9219
- var GridCell = styled48.div`
9399
+ var GridCell = styled50.div`
9220
9400
  min-width: 0; /* Prevent grid blowout with long content */
9221
9401
  cursor: pointer;
9222
9402
  border-radius: ${tokens.borderRadius.lg};
@@ -9226,7 +9406,7 @@ var GridCell = styled48.div`
9226
9406
  transform: translateY(-2px);
9227
9407
  }
9228
9408
  `;
9229
- var EmptyState2 = styled48.div`
9409
+ var EmptyState2 = styled50.div`
9230
9410
  display: flex;
9231
9411
  align-items: center;
9232
9412
  justify-content: center;
@@ -9235,12 +9415,12 @@ var EmptyState2 = styled48.div`
9235
9415
  border: 1px dashed ${tokens.colors.border.hover};
9236
9416
  border-radius: ${tokens.borderRadius.lg};
9237
9417
  `;
9238
- var EmptyStateText = styled48.p`
9418
+ var EmptyStateText = styled50.p`
9239
9419
  margin: 0;
9240
9420
  font-size: ${tokens.typography.fontSize.sm};
9241
9421
  color: ${tokens.colors.text.tertiary};
9242
9422
  `;
9243
- var Container14 = styled48.div`
9423
+ var Container14 = styled50.div`
9244
9424
  display: flex;
9245
9425
  flex-direction: column;
9246
9426
  height: 100%;
@@ -9254,7 +9434,7 @@ var Container14 = styled48.div`
9254
9434
  );
9255
9435
  overflow: auto;
9256
9436
  `;
9257
- var Header3 = styled48.div`
9437
+ var Header3 = styled50.div`
9258
9438
  display: flex;
9259
9439
  justify-content: space-between;
9260
9440
  align-items: center;
@@ -9280,7 +9460,7 @@ var Header3 = styled48.div`
9280
9460
  pointer-events: none;
9281
9461
  }
9282
9462
  `;
9283
- var Title = styled48.h2`
9463
+ var Title = styled50.h2`
9284
9464
  margin: 0;
9285
9465
  font-size: ${tokens.typography.fontSize.base};
9286
9466
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -9290,12 +9470,12 @@ var Title = styled48.h2`
9290
9470
  text-overflow: ellipsis;
9291
9471
  min-width: 0;
9292
9472
  `;
9293
- var ViewToggle = styled48.div`
9473
+ var ViewToggle = styled50.div`
9294
9474
  display: flex;
9295
9475
  gap: ${tokens.spacing.xs};
9296
9476
  flex-shrink: 0;
9297
9477
  `;
9298
- var ToggleButton = styled48.button`
9478
+ var ToggleButton = styled50.button`
9299
9479
  padding: ${tokens.spacing.xs};
9300
9480
  width: 32px;
9301
9481
  height: 32px;
@@ -9323,7 +9503,7 @@ var ToggleButton = styled48.button`
9323
9503
  background: ${({ $active }) => $active ? `${tokens.colors.primary}4D` : tokens.colors.surface.overlayHover};
9324
9504
  }
9325
9505
  `;
9326
- var Content4 = styled48.div`
9506
+ var Content4 = styled50.div`
9327
9507
  flex: 1;
9328
9508
  display: flex;
9329
9509
  flex-direction: column;
@@ -9332,7 +9512,7 @@ var Content4 = styled48.div`
9332
9512
  /* Extra top padding to account for header fade overlay */
9333
9513
  padding-top: ${tokens.spacing.md};
9334
9514
  `;
9335
- var EmptyState3 = styled48.div`
9515
+ var EmptyState3 = styled50.div`
9336
9516
  display: flex;
9337
9517
  flex-direction: column;
9338
9518
  align-items: center;
@@ -9360,7 +9540,7 @@ var EmptyState3 = styled48.div`
9360
9540
  font-size: ${tokens.typography.fontSize.sm};
9361
9541
  }
9362
9542
  `;
9363
- var PostCount = styled48.span`
9543
+ var PostCount = styled50.span`
9364
9544
  font-size: ${tokens.typography.fontSize.sm};
9365
9545
  color: ${tokens.colors.text.tertiary};
9366
9546
  font-weight: ${tokens.typography.fontWeight.regular};
@@ -9779,13 +9959,13 @@ var shimmer2 = keyframes`
9779
9959
  0% { background-position: -200% 0; }
9780
9960
  100% { background-position: 200% 0; }
9781
9961
  `;
9782
- var Icon2 = styled48.img`
9962
+ var Icon2 = styled50.img`
9783
9963
  width: 14px;
9784
9964
  height: 14px;
9785
9965
  vertical-align: middle;
9786
9966
  opacity: 0.8;
9787
9967
  `;
9788
- var CardContainer2 = styled48.div`
9968
+ var CardContainer2 = styled50.div`
9789
9969
  background: ${tokens.colors.background.dark};
9790
9970
  border-radius: ${tokens.borderRadius.xl};
9791
9971
  padding: ${tokens.spacing.lg};
@@ -9803,7 +9983,7 @@ var CardContainer2 = styled48.div`
9803
9983
  padding: ${tokens.spacing.md};
9804
9984
  }
9805
9985
  `;
9806
- var CardHeader = styled48.div`
9986
+ var CardHeader = styled50.div`
9807
9987
  display: flex;
9808
9988
  justify-content: space-between;
9809
9989
  align-items: center;
@@ -9816,12 +9996,12 @@ var CardHeader = styled48.div`
9816
9996
  align-items: flex-start;
9817
9997
  }
9818
9998
  `;
9819
- var HeaderLeft = styled48.div`
9999
+ var HeaderLeft = styled50.div`
9820
10000
  display: flex;
9821
10001
  align-items: center;
9822
10002
  gap: ${tokens.spacing.sm};
9823
10003
  `;
9824
- var SubredditBadgeContainer = styled48.span`
10004
+ var SubredditBadgeContainer = styled50.span`
9825
10005
  display: inline-flex;
9826
10006
  align-items: center;
9827
10007
  gap: ${tokens.spacing.xs};
@@ -9834,14 +10014,14 @@ var SubredditBadgeContainer = styled48.span`
9834
10014
  border: 1px solid ${({ $color }) => `${$color}40`};
9835
10015
  transition: all ${tokens.transitions.fast};
9836
10016
  `;
9837
- var SubredditLink = styled48.a`
10017
+ var SubredditLink = styled50.a`
9838
10018
  text-decoration: none;
9839
10019
 
9840
10020
  &:hover ${SubredditBadgeContainer} {
9841
10021
  background: ${tokens.colors.surface.overlayHover};
9842
10022
  }
9843
10023
  `;
9844
- var ScoreBadgeContainer = styled48.div`
10024
+ var ScoreBadgeContainer = styled50.div`
9845
10025
  display: flex;
9846
10026
  align-items: baseline;
9847
10027
  gap: ${tokens.spacing.xs};
@@ -9850,42 +10030,42 @@ var ScoreBadgeContainer = styled48.div`
9850
10030
  background: ${({ $color }) => `${$color}20`};
9851
10031
  border: 1px solid ${({ $color }) => `${$color}40`};
9852
10032
  `;
9853
- var ScoreValue = styled48.span`
10033
+ var ScoreValue = styled50.span`
9854
10034
  font-size: ${tokens.typography.fontSize.lg};
9855
10035
  font-weight: ${tokens.typography.fontWeight.bold};
9856
10036
  color: ${tokens.colors.text.primary};
9857
10037
  `;
9858
- var ScoreMax = styled48.span`
10038
+ var ScoreMax = styled50.span`
9859
10039
  font-size: ${tokens.typography.fontSize.xs};
9860
10040
  color: ${tokens.colors.text.tertiary};
9861
10041
  `;
9862
- var ScoreLabel = styled48.span`
10042
+ var ScoreLabel = styled50.span`
9863
10043
  margin-left: ${tokens.spacing.xs};
9864
10044
  font-size: ${tokens.typography.fontSize.xs};
9865
10045
  font-weight: ${tokens.typography.fontWeight.medium};
9866
10046
  color: ${tokens.colors.text.secondary};
9867
10047
  `;
9868
- var StatsContainer = styled48.div`
10048
+ var StatsContainer = styled50.div`
9869
10049
  display: flex;
9870
10050
  align-items: center;
9871
10051
  gap: ${tokens.spacing.xs};
9872
10052
  `;
9873
- var StatItem = styled48.span`
10053
+ var StatItem = styled50.span`
9874
10054
  display: flex;
9875
10055
  align-items: center;
9876
10056
  gap: ${tokens.spacing.xs};
9877
10057
  `;
9878
- var StatValue = styled48.span`
10058
+ var StatValue = styled50.span`
9879
10059
  font-size: ${tokens.typography.fontSize.sm};
9880
10060
  color: ${tokens.colors.text.secondary};
9881
10061
  `;
9882
- var StatDivider = styled48.span`
10062
+ var StatDivider = styled50.span`
9883
10063
  color: ${tokens.colors.text.tertiary};
9884
10064
  `;
9885
- var PostPreviewSection = styled48.div`
10065
+ var PostPreviewSection = styled50.div`
9886
10066
  margin-bottom: ${tokens.spacing.md};
9887
10067
  `;
9888
- var PostTitle = styled48.a`
10068
+ var PostTitle = styled50.a`
9889
10069
  display: flex;
9890
10070
  align-items: flex-start;
9891
10071
  gap: ${tokens.spacing.xs};
@@ -9900,58 +10080,58 @@ var PostTitle = styled48.a`
9900
10080
  color: ${tokens.colors.primary};
9901
10081
  }
9902
10082
  `;
9903
- var ExternalLinkIcon = styled48.span`
10083
+ var ExternalLinkIcon = styled50.span`
9904
10084
  font-size: ${tokens.typography.fontSize.sm};
9905
10085
  color: ${tokens.colors.text.tertiary};
9906
10086
  flex-shrink: 0;
9907
10087
  `;
9908
- var PostContent2 = styled48.p`
10088
+ var PostContent2 = styled50.p`
9909
10089
  font-size: ${tokens.typography.fontSize.base};
9910
10090
  color: ${tokens.colors.text.secondary};
9911
10091
  line-height: ${tokens.typography.lineHeight.relaxed};
9912
10092
  margin-bottom: ${tokens.spacing.sm};
9913
10093
  white-space: pre-wrap;
9914
10094
  `;
9915
- var PostAuthor = styled48.div`
10095
+ var PostAuthor = styled50.div`
9916
10096
  display: flex;
9917
10097
  align-items: center;
9918
10098
  gap: ${tokens.spacing.sm};
9919
10099
  font-size: ${tokens.typography.fontSize.sm};
9920
10100
  color: ${tokens.colors.text.tertiary};
9921
10101
  `;
9922
- var PostFlair = styled48.span`
10102
+ var PostFlair = styled50.span`
9923
10103
  padding: ${tokens.spacing.xs} ${tokens.spacing.sm};
9924
10104
  border-radius: ${tokens.borderRadius.sm};
9925
10105
  background: ${tokens.colors.surface.overlay};
9926
10106
  font-size: ${tokens.typography.fontSize.xs};
9927
10107
  color: ${tokens.colors.text.secondary};
9928
10108
  `;
9929
- var Divider = styled48.hr`
10109
+ var Divider = styled50.hr`
9930
10110
  border: none;
9931
10111
  height: 1px;
9932
10112
  background: ${tokens.colors.border.default};
9933
10113
  margin: ${tokens.spacing.md} 0;
9934
10114
  `;
9935
- var ReplySection = styled48.div``;
9936
- var ReplySectionHeader = styled48.div`
10115
+ var ReplySection = styled50.div``;
10116
+ var ReplySectionHeader = styled50.div`
9937
10117
  display: flex;
9938
10118
  justify-content: space-between;
9939
10119
  align-items: center;
9940
10120
  margin-bottom: ${tokens.spacing.sm};
9941
10121
  `;
9942
- var ReplyLabel = styled48.span`
10122
+ var ReplyLabel = styled50.span`
9943
10123
  font-size: ${tokens.typography.fontSize.sm};
9944
10124
  font-weight: ${tokens.typography.fontWeight.semibold};
9945
10125
  color: ${tokens.colors.text.secondary};
9946
10126
  text-transform: uppercase;
9947
10127
  letter-spacing: 0.5px;
9948
10128
  `;
9949
- var ReplyMeta = styled48.div`
10129
+ var ReplyMeta = styled50.div`
9950
10130
  display: flex;
9951
10131
  align-items: center;
9952
10132
  gap: ${tokens.spacing.sm};
9953
10133
  `;
9954
- var ToneBadgeContainer = styled48.span`
10134
+ var ToneBadgeContainer = styled50.span`
9955
10135
  display: inline-flex;
9956
10136
  align-items: center;
9957
10137
  gap: ${tokens.spacing.xs};
@@ -9961,17 +10141,17 @@ var ToneBadgeContainer = styled48.span`
9961
10141
  background: ${({ $color }) => `${$color}20`};
9962
10142
  color: ${({ $color }) => $color};
9963
10143
  `;
9964
- var ToneIcon = styled48.img`
10144
+ var ToneIcon = styled50.img`
9965
10145
  width: 12px;
9966
10146
  height: 12px;
9967
10147
  `;
9968
- var CharacterCount = styled48.span`
10148
+ var CharacterCount = styled50.span`
9969
10149
  font-size: ${tokens.typography.fontSize.xs};
9970
10150
  font-family: ${tokens.typography.fontFamily.monospace};
9971
10151
  font-weight: ${tokens.typography.fontWeight.medium};
9972
10152
  color: ${({ $color }) => $color};
9973
10153
  `;
9974
- var ReplyContent = styled48.div`
10154
+ var ReplyContent = styled50.div`
9975
10155
  font-size: ${tokens.typography.fontSize.base};
9976
10156
  line-height: ${tokens.typography.lineHeight.relaxed};
9977
10157
  color: ${tokens.colors.text.primary};
@@ -9984,7 +10164,7 @@ var ReplyContent = styled48.div`
9984
10164
  min-height: 100px;
9985
10165
  animation: ${fadeIn3} 0.3s ease-out;
9986
10166
  `;
9987
- var ReplyTextarea = styled48.textarea`
10167
+ var ReplyTextarea = styled50.textarea`
9988
10168
  width: 100%;
9989
10169
  min-height: 150px;
9990
10170
  max-height: 400px;
@@ -10010,7 +10190,7 @@ var ReplyTextarea = styled48.textarea`
10010
10190
  color: ${tokens.colors.text.tertiary};
10011
10191
  }
10012
10192
  `;
10013
- var StrategyHint = styled48.div`
10193
+ var StrategyHint = styled50.div`
10014
10194
  display: flex;
10015
10195
  align-items: flex-start;
10016
10196
  gap: ${tokens.spacing.xs};
@@ -10019,40 +10199,40 @@ var StrategyHint = styled48.div`
10019
10199
  border-radius: ${tokens.borderRadius.sm};
10020
10200
  margin-bottom: ${tokens.spacing.sm};
10021
10201
  `;
10022
- var StrategyIconImg = styled48.img`
10202
+ var StrategyIconImg = styled50.img`
10023
10203
  width: 16px;
10024
10204
  height: 16px;
10025
10205
  opacity: 0.8;
10026
10206
  `;
10027
- var StrategyText = styled48.span`
10207
+ var StrategyText = styled50.span`
10028
10208
  font-size: ${tokens.typography.fontSize.sm};
10029
10209
  color: ${tokens.colors.text.secondary};
10030
10210
  font-style: italic;
10031
10211
  `;
10032
- var ProgressBarContainer2 = styled48.div`
10212
+ var ProgressBarContainer2 = styled50.div`
10033
10213
  margin-top: ${tokens.spacing.xs};
10034
10214
  `;
10035
- var ProgressBarTrack2 = styled48.div`
10215
+ var ProgressBarTrack2 = styled50.div`
10036
10216
  width: 100%;
10037
10217
  height: 4px;
10038
10218
  background: ${tokens.colors.border.default};
10039
10219
  border-radius: ${tokens.borderRadius.sm};
10040
10220
  overflow: hidden;
10041
10221
  `;
10042
- var ProgressBarFill3 = styled48.div`
10222
+ var ProgressBarFill3 = styled50.div`
10043
10223
  width: ${({ $percentage }) => $percentage}%;
10044
10224
  height: 100%;
10045
10225
  border-radius: ${tokens.borderRadius.sm};
10046
10226
  transition: width 0.3s ease, background-color 0.3s ease;
10047
10227
  background: ${({ $color }) => $color};
10048
10228
  `;
10049
- var SkeletonContent2 = styled48.div`
10229
+ var SkeletonContent2 = styled50.div`
10050
10230
  display: flex;
10051
10231
  flex-direction: column;
10052
10232
  gap: ${tokens.spacing.sm};
10053
10233
  padding: ${tokens.spacing.md};
10054
10234
  `;
10055
- var SkeletonLine2 = styled48.div`
10235
+ var SkeletonLine2 = styled50.div`
10056
10236
  height: 16px;
10057
10237
  width: ${({ $width }) => $width};
10058
10238
  background: linear-gradient(
@@ -10225,7 +10405,7 @@ var pulse4 = keyframes`
10225
10405
  box-shadow: 0 0 0 8px ${tokens.colors.primary}00;
10226
10406
  }
10227
10407
  `;
10228
- var ControlsContainer = styled48.div`
10408
+ var ControlsContainer = styled50.div`
10229
10409
  display: flex;
10230
10410
  flex-direction: column;
10231
10411
  gap: ${tokens.spacing.md};
@@ -10234,7 +10414,7 @@ var ControlsContainer = styled48.div`
10234
10414
  border-radius: ${tokens.borderRadius.lg};
10235
10415
  border: 1px solid ${tokens.colors.border.default};
10236
10416
  `;
10237
- var EditModeSection = styled48.div`
10417
+ var EditModeSection = styled50.div`
10238
10418
  display: flex;
10239
10419
  justify-content: space-between;
10240
10420
  align-items: center;
@@ -10243,25 +10423,25 @@ var EditModeSection = styled48.div`
10243
10423
  border: 1px solid ${tokens.colors.status.editing}40;
10244
10424
  border-radius: ${tokens.borderRadius.md};
10245
10425
  `;
10246
- var EditModeLabel = styled48.span`
10426
+ var EditModeLabel = styled50.span`
10247
10427
  font-size: ${tokens.typography.fontSize.sm};
10248
10428
  font-weight: ${tokens.typography.fontWeight.medium};
10249
10429
  color: ${tokens.colors.status.editing};
10250
10430
  `;
10251
- var EditModeActions = styled48.div`
10431
+ var EditModeActions = styled50.div`
10252
10432
  display: flex;
10253
10433
  gap: ${tokens.spacing.sm};
10254
10434
  `;
10255
- var InputSection = styled48.div`
10435
+ var InputSection = styled50.div`
10256
10436
  display: flex;
10257
10437
  flex-direction: column;
10258
10438
  gap: ${tokens.spacing.xs};
10259
10439
  `;
10260
- var InputLabel = styled48.label`
10440
+ var InputLabel = styled50.label`
10261
10441
  font-size: ${tokens.typography.fontSize.sm};
10262
10442
  color: ${tokens.colors.text.secondary};
10263
10443
  `;
10264
- var InputRow = styled48.div`
10444
+ var InputRow = styled50.div`
10265
10445
  display: flex;
10266
10446
  gap: ${tokens.spacing.xs};
10267
10447
  flex-wrap: wrap;
@@ -10270,7 +10450,7 @@ var InputRow = styled48.div`
10270
10450
  flex-direction: column;
10271
10451
  }
10272
10452
  `;
10273
- var TextInput = styled48.input`
10453
+ var TextInput = styled50.input`
10274
10454
  flex: 1;
10275
10455
  min-width: 0;
10276
10456
  padding: ${tokens.spacing.sm};
@@ -10294,7 +10474,7 @@ var TextInput = styled48.input`
10294
10474
  width: 100%;
10295
10475
  }
10296
10476
  `;
10297
- var SmallButton = styled48.button`
10477
+ var SmallButton = styled50.button`
10298
10478
  padding: ${tokens.spacing.sm};
10299
10479
  font-size: ${tokens.typography.fontSize.base};
10300
10480
  color: ${tokens.colors.text.tertiary};
@@ -10309,12 +10489,12 @@ var SmallButton = styled48.button`
10309
10489
  background: ${tokens.colors.surface.overlay};
10310
10490
  }
10311
10491
  `;
10312
- var MainActions = styled48.div`
10492
+ var MainActions = styled50.div`
10313
10493
  display: flex;
10314
10494
  flex-direction: column;
10315
10495
  gap: ${tokens.spacing.md};
10316
10496
  `;
10317
- var SecondaryActions = styled48.div`
10497
+ var SecondaryActions = styled50.div`
10318
10498
  display: flex;
10319
10499
  gap: ${tokens.spacing.sm};
10320
10500
  flex-wrap: wrap;
@@ -10325,7 +10505,7 @@ var SecondaryActions = styled48.div`
10325
10505
  }
10326
10506
  }
10327
10507
  `;
10328
- var PrimaryActions = styled48.div`
10508
+ var PrimaryActions = styled50.div`
10329
10509
  display: flex;
10330
10510
  gap: ${tokens.spacing.sm};
10331
10511
  flex-wrap: wrap;
@@ -10336,12 +10516,12 @@ var PrimaryActions = styled48.div`
10336
10516
  }
10337
10517
  }
10338
10518
  `;
10339
- var Icon3 = styled48.img`
10519
+ var Icon3 = styled50.img`
10340
10520
  width: 16px;
10341
10521
  height: 16px;
10342
10522
  vertical-align: middle;
10343
10523
  `;
10344
- var ActionButton6 = styled48.button`
10524
+ var ActionButton6 = styled50.button`
10345
10525
  display: flex;
10346
10526
  align-items: center;
10347
10527
  justify-content: center;
@@ -10532,7 +10712,7 @@ function TokenUsageCard({
10532
10712
  }
10533
10713
  return /* @__PURE__ */ jsxs(Card2, { className, "data-testid": "token-usage-card", children: [
10534
10714
  /* @__PURE__ */ jsxs(Header4, { children: [
10535
- /* @__PURE__ */ jsx(Title2, { children: "Token Usage" }),
10715
+ /* @__PURE__ */ jsx(Title2, { children: "Credit Usage" }),
10536
10716
  /* @__PURE__ */ jsx(Period, { children: periodLabel })
10537
10717
  ] }),
10538
10718
  /* @__PURE__ */ jsxs(UsageSection, { children: [
@@ -10559,7 +10739,7 @@ function TokenUsageCard({
10559
10739
  ] })
10560
10740
  ] }),
10561
10741
  /* @__PURE__ */ jsxs(TransactionTokens, { $type: transaction.type, children: [
10562
- transaction.type === "output" ? "+" : "",
10742
+ transaction.type === "input" ? "+" : "-",
10563
10743
  formatNumber2(transaction.tokens)
10564
10744
  ] })
10565
10745
  ] }, transaction.id)) })
@@ -10568,7 +10748,7 @@ function TokenUsageCard({
10568
10748
  onViewAll && transactions.length > 0 && /* @__PURE__ */ jsx(ViewAllButton, { onClick: onViewAll, children: "View all activity" })
10569
10749
  ] });
10570
10750
  }
10571
- var Card2 = styled48.div`
10751
+ var Card2 = styled50.div`
10572
10752
  display: flex;
10573
10753
  flex-direction: column;
10574
10754
  background: ${tokens.colors.background.darker};
@@ -10577,7 +10757,7 @@ var Card2 = styled48.div`
10577
10757
  height: 100%;
10578
10758
  overflow: hidden;
10579
10759
  `;
10580
- var Header4 = styled48.div`
10760
+ var Header4 = styled50.div`
10581
10761
  display: flex;
10582
10762
  justify-content: space-between;
10583
10763
  align-items: center;
@@ -10587,65 +10767,65 @@ var Header4 = styled48.div`
10587
10767
  min-height: 48px;
10588
10768
  flex-shrink: 0;
10589
10769
  `;
10590
- var Title2 = styled48.h3`
10770
+ var Title2 = styled50.h3`
10591
10771
  margin: 0;
10592
10772
  font-size: ${tokens.typography.fontSize.lg};
10593
10773
  font-weight: ${tokens.typography.fontWeight.semibold};
10594
10774
  font-family: ${tokens.typography.fontFamily.primary};
10595
10775
  color: ${tokens.colors.text.primary};
10596
10776
  `;
10597
- var Period = styled48.span`
10777
+ var Period = styled50.span`
10598
10778
  font-size: ${tokens.typography.fontSize.sm};
10599
10779
  font-family: ${tokens.typography.fontFamily.primary};
10600
10780
  color: ${tokens.colors.text.secondary};
10601
10781
  `;
10602
- var UsageSection = styled48.div`
10782
+ var UsageSection = styled50.div`
10603
10783
  display: flex;
10604
10784
  flex-direction: column;
10605
10785
  gap: ${tokens.spacing.sm};
10606
10786
  padding: ${tokens.spacing.md};
10607
10787
  `;
10608
- var UsageStats = styled48.div`
10788
+ var UsageStats = styled50.div`
10609
10789
  display: flex;
10610
10790
  align-items: baseline;
10611
10791
  gap: ${tokens.spacing.xs};
10612
10792
  `;
10613
- var CurrentUsage = styled48.span`
10793
+ var CurrentUsage = styled50.span`
10614
10794
  font-size: ${tokens.typography.fontSize["2xl"]};
10615
10795
  font-weight: ${tokens.typography.fontWeight.bold};
10616
10796
  font-family: ${tokens.typography.fontFamily.primary};
10617
10797
  color: ${tokens.colors.text.primary};
10618
10798
  `;
10619
- var UsageSeparator = styled48.span`
10799
+ var UsageSeparator = styled50.span`
10620
10800
  font-size: ${tokens.typography.fontSize.lg};
10621
10801
  font-family: ${tokens.typography.fontFamily.primary};
10622
10802
  color: ${tokens.colors.text.tertiary};
10623
10803
  `;
10624
- var MaxUsage = styled48.span`
10804
+ var MaxUsage = styled50.span`
10625
10805
  font-size: ${tokens.typography.fontSize.lg};
10626
10806
  font-family: ${tokens.typography.fontFamily.primary};
10627
10807
  color: ${tokens.colors.text.secondary};
10628
10808
  `;
10629
- var ProgressContainer = styled48.div`
10809
+ var ProgressContainer = styled50.div`
10630
10810
  width: 100%;
10631
10811
  height: 8px;
10632
10812
  background: ${tokens.colors.background.light};
10633
10813
  border-radius: ${tokens.borderRadius.full};
10634
10814
  overflow: hidden;
10635
10815
  `;
10636
- var ProgressBar3 = styled48.div`
10816
+ var ProgressBar3 = styled50.div`
10637
10817
  height: 100%;
10638
10818
  width: ${({ $percentage }) => $percentage}%;
10639
10819
  background: ${({ $level }) => usageLevelColors[$level]};
10640
10820
  border-radius: ${tokens.borderRadius.full};
10641
10821
  transition: width ${tokens.transitions.normal}, background ${tokens.transitions.normal};
10642
10822
  `;
10643
- var PercentageLabel = styled48.span`
10823
+ var PercentageLabel = styled50.span`
10644
10824
  font-size: ${tokens.typography.fontSize.sm};
10645
10825
  font-family: ${tokens.typography.fontFamily.primary};
10646
10826
  color: ${({ $level }) => usageLevelColors[$level]};
10647
10827
  `;
10648
- var TransactionsSection = styled48.div`
10828
+ var TransactionsSection = styled50.div`
10649
10829
  display: flex;
10650
10830
  flex-direction: column;
10651
10831
  gap: ${tokens.spacing.sm};
@@ -10655,19 +10835,19 @@ var TransactionsSection = styled48.div`
10655
10835
  overflow-y: auto;
10656
10836
  min-height: 0;
10657
10837
  `;
10658
- var TransactionsHeader = styled48.h4`
10838
+ var TransactionsHeader = styled50.h4`
10659
10839
  margin: 0;
10660
10840
  font-size: ${tokens.typography.fontSize.sm};
10661
10841
  font-weight: ${tokens.typography.fontWeight.semibold};
10662
10842
  font-family: ${tokens.typography.fontFamily.primary};
10663
10843
  color: ${tokens.colors.text.secondary};
10664
10844
  `;
10665
- var TransactionsList = styled48.div`
10845
+ var TransactionsList = styled50.div`
10666
10846
  display: flex;
10667
10847
  flex-direction: column;
10668
10848
  gap: ${tokens.spacing.sm};
10669
10849
  `;
10670
- var TransactionItem = styled48.div`
10850
+ var TransactionItem = styled50.div`
10671
10851
  display: flex;
10672
10852
  align-items: center;
10673
10853
  gap: ${tokens.spacing.sm};
@@ -10684,7 +10864,7 @@ var TransactionItem = styled48.div`
10684
10864
  border-color: ${tokens.colors.border.hover};
10685
10865
  }
10686
10866
  `;
10687
- var TransactionIcon = styled48.span`
10867
+ var TransactionIcon = styled50.span`
10688
10868
  width: 24px;
10689
10869
  height: 24px;
10690
10870
  display: flex;
@@ -10706,12 +10886,12 @@ var TransactionIcon = styled48.span`
10706
10886
  }};
10707
10887
  }
10708
10888
  `;
10709
- var TransactionInfo = styled48.div`
10889
+ var TransactionInfo = styled50.div`
10710
10890
  flex: 1;
10711
10891
  min-width: 0;
10712
10892
  overflow: hidden;
10713
10893
  `;
10714
- var TransactionDescription = styled48.div`
10894
+ var TransactionDescription = styled50.div`
10715
10895
  font-size: ${tokens.typography.fontSize.sm};
10716
10896
  font-family: ${tokens.typography.fontFamily.primary};
10717
10897
  color: ${tokens.colors.text.primary};
@@ -10719,7 +10899,7 @@ var TransactionDescription = styled48.div`
10719
10899
  text-overflow: ellipsis;
10720
10900
  white-space: nowrap;
10721
10901
  `;
10722
- var TransactionMeta = styled48.div`
10902
+ var TransactionMeta = styled50.div`
10723
10903
  display: flex;
10724
10904
  gap: ${tokens.spacing.sm};
10725
10905
  font-size: ${tokens.typography.fontSize.xs};
@@ -10733,21 +10913,21 @@ var TransactionMeta = styled48.div`
10733
10913
  white-space: nowrap;
10734
10914
  }
10735
10915
  `;
10736
- var TransactionTokens = styled48.span`
10916
+ var TransactionTokens = styled50.span`
10737
10917
  font-size: ${tokens.typography.fontSize.sm};
10738
10918
  font-weight: ${tokens.typography.fontWeight.medium};
10739
10919
  font-family: ${tokens.typography.fontFamily.primary};
10740
10920
  color: ${({ $type }) => typeColors[$type]};
10741
10921
  flex-shrink: 0;
10742
10922
  `;
10743
- var EmptyState4 = styled48.div`
10923
+ var EmptyState4 = styled50.div`
10744
10924
  text-align: center;
10745
10925
  padding: ${tokens.spacing.lg} ${tokens.spacing.md};
10746
10926
  font-size: ${tokens.typography.fontSize.sm};
10747
10927
  font-family: ${tokens.typography.fontFamily.primary};
10748
10928
  color: ${tokens.colors.text.tertiary};
10749
10929
  `;
10750
- var ViewAllButton = styled48.button`
10930
+ var ViewAllButton = styled50.button`
10751
10931
  margin: 0 ${tokens.spacing.md} ${tokens.spacing.md};
10752
10932
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
10753
10933
  background: transparent;
@@ -10769,7 +10949,7 @@ var pulse5 = keyframes`
10769
10949
  0%, 100% { opacity: 1; }
10770
10950
  50% { opacity: 0.4; }
10771
10951
  `;
10772
- var SkeletonBlock = styled48.div`
10952
+ var SkeletonBlock = styled50.div`
10773
10953
  width: ${({ $width }) => $width};
10774
10954
  height: ${({ $height }) => $height};
10775
10955
  background: ${tokens.colors.background.light};
@@ -10847,7 +11027,7 @@ var WorkflowCard = ({
10847
11027
  );
10848
11028
  };
10849
11029
  WorkflowCard.displayName = "WorkflowCard";
10850
- var Card3 = styled48.button`
11030
+ var Card3 = styled50.button`
10851
11031
  display: grid;
10852
11032
  gap: ${tokens.spacing.sm};
10853
11033
  padding: ${tokens.spacing.md};
@@ -10878,7 +11058,7 @@ var Card3 = styled48.button`
10878
11058
  cursor: not-allowed;
10879
11059
  }
10880
11060
  `;
10881
- var WorkflowName2 = styled48.h3`
11061
+ var WorkflowName2 = styled50.h3`
10882
11062
  margin: 0;
10883
11063
  font-size: ${tokens.typography.fontSize.base};
10884
11064
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -10889,7 +11069,7 @@ var WorkflowName2 = styled48.h3`
10889
11069
  white-space: nowrap;
10890
11070
  min-width: 0;
10891
11071
  `;
10892
- var Description2 = styled48.p`
11072
+ var Description2 = styled50.p`
10893
11073
  margin: 0;
10894
11074
  font-size: ${tokens.typography.fontSize.sm};
10895
11075
  color: ${tokens.colors.text.tertiary};
@@ -10901,7 +11081,7 @@ var Description2 = styled48.p`
10901
11081
  word-break: break-word;
10902
11082
  min-width: 0;
10903
11083
  `;
10904
- var CardFooter = styled48.div`
11084
+ var CardFooter = styled50.div`
10905
11085
  display: flex;
10906
11086
  flex-wrap: wrap;
10907
11087
  align-items: center;
@@ -10910,13 +11090,13 @@ var CardFooter = styled48.div`
10910
11090
  border-top: 1px solid ${tokens.colors.border.subtle};
10911
11091
  width: 100%;
10912
11092
  `;
10913
- var IntegrationList = styled48.div`
11093
+ var IntegrationList = styled50.div`
10914
11094
  display: flex;
10915
11095
  align-items: center;
10916
11096
  gap: ${tokens.spacing.xs};
10917
11097
  flex-shrink: 0;
10918
11098
  `;
10919
- var IntegrationIconWrapper = styled48.span`
11099
+ var IntegrationIconWrapper = styled50.span`
10920
11100
  display: flex;
10921
11101
  align-items: center;
10922
11102
  justify-content: center;
@@ -10938,12 +11118,12 @@ var IntegrationIconWrapper = styled48.span`
10938
11118
  }
10939
11119
  `}
10940
11120
  `;
10941
- var IntegrationIcon = styled48.img`
11121
+ var IntegrationIcon = styled50.img`
10942
11122
  width: 16px;
10943
11123
  height: 16px;
10944
11124
  object-fit: contain;
10945
11125
  `;
10946
- var Indicators = styled48.div`
11126
+ var Indicators = styled50.div`
10947
11127
  display: flex;
10948
11128
  align-items: center;
10949
11129
  flex-wrap: wrap;
@@ -10951,7 +11131,7 @@ var Indicators = styled48.div`
10951
11131
  margin-left: auto;
10952
11132
  min-width: 0;
10953
11133
  `;
10954
- var IndicatorPill = styled48.span`
11134
+ var IndicatorPill = styled50.span`
10955
11135
  display: inline-flex;
10956
11136
  align-items: center;
10957
11137
  gap: ${tokens.spacing.xs};
@@ -10960,14 +11140,14 @@ var IndicatorPill = styled48.span`
10960
11140
  background: ${({ $variant }) => $variant === "warning" ? `${tokens.colors.warning}15` : `${tokens.colors.info}15`};
10961
11141
  border: 1px solid ${({ $variant }) => $variant === "warning" ? `${tokens.colors.warning}30` : `${tokens.colors.info}30`};
10962
11142
  `;
10963
- var IndicatorDot = styled48.span`
11143
+ var IndicatorDot = styled50.span`
10964
11144
  width: 6px;
10965
11145
  height: 6px;
10966
11146
  border-radius: ${tokens.borderRadius.full};
10967
11147
  background: ${({ $variant }) => $variant === "warning" ? tokens.colors.warning : tokens.colors.info};
10968
11148
  flex-shrink: 0;
10969
11149
  `;
10970
- var IndicatorText = styled48.span`
11150
+ var IndicatorText = styled50.span`
10971
11151
  font-size: ${tokens.typography.fontSize.xs};
10972
11152
  font-weight: ${tokens.typography.fontWeight.medium};
10973
11153
  color: ${tokens.colors.text.secondary};
@@ -10978,7 +11158,7 @@ var severityColors = {
10978
11158
  warning: tokens.colors.warning,
10979
11159
  info: tokens.colors.info
10980
11160
  };
10981
- var AlertContainer = styled48.div`
11161
+ var AlertContainer = styled50.div`
10982
11162
  display: flex;
10983
11163
  flex-direction: column;
10984
11164
  background-color: ${(props) => {
@@ -10996,7 +11176,7 @@ var AlertContainer = styled48.div`
10996
11176
  max-width: ${(props) => props.variant === "inline" ? "600px" : "100%"};
10997
11177
  font-family: ${tokens.typography.fontFamily.primary};
10998
11178
  `;
10999
- var ModalOverlay = styled48.div`
11179
+ var ModalOverlay = styled50.div`
11000
11180
  position: fixed;
11001
11181
  top: 0;
11002
11182
  left: 0;
@@ -11009,53 +11189,53 @@ var ModalOverlay = styled48.div`
11009
11189
  z-index: ${tokens.zIndex.modal};
11010
11190
  padding: ${tokens.spacing.lg};
11011
11191
  `;
11012
- var ModalContent = styled48.div`
11192
+ var ModalContent = styled50.div`
11013
11193
  background-color: ${tokens.colors.background.dark};
11014
11194
  border-radius: ${tokens.borderRadius.lg};
11015
11195
  max-width: 500px;
11016
11196
  width: 100%;
11017
11197
  box-shadow: ${tokens.shadows.xl};
11018
11198
  `;
11019
- var Header5 = styled48.div`
11199
+ var Header5 = styled50.div`
11020
11200
  display: flex;
11021
11201
  align-items: flex-start;
11022
11202
  gap: ${tokens.spacing.md};
11023
11203
  `;
11024
- var IconContainer2 = styled48.div`
11204
+ var IconContainer2 = styled50.div`
11025
11205
  flex-shrink: 0;
11026
11206
  width: 24px;
11027
11207
  height: 24px;
11028
11208
  color: ${(props) => severityColors[props.severity]};
11029
11209
  `;
11030
- var Content5 = styled48.div`
11210
+ var Content5 = styled50.div`
11031
11211
  flex: 1;
11032
11212
  display: flex;
11033
11213
  flex-direction: column;
11034
11214
  gap: ${tokens.spacing.sm};
11035
11215
  `;
11036
- var Title3 = styled48.div`
11216
+ var Title3 = styled50.div`
11037
11217
  font-size: ${tokens.typography.fontSize.base};
11038
11218
  font-weight: ${tokens.typography.fontWeight.semibold};
11039
11219
  color: ${tokens.colors.text.primary};
11040
11220
  line-height: ${tokens.typography.lineHeight.tight};
11041
11221
  `;
11042
- var ErrorMessage2 = styled48.div`
11222
+ var ErrorMessage2 = styled50.div`
11043
11223
  font-size: ${tokens.typography.fontSize.sm};
11044
11224
  line-height: ${tokens.typography.lineHeight.normal};
11045
11225
  color: ${tokens.colors.text.secondary};
11046
11226
  `;
11047
- var ErrorCode = styled48.div`
11227
+ var ErrorCode = styled50.div`
11048
11228
  font-size: ${tokens.typography.fontSize.xs};
11049
11229
  color: ${tokens.colors.text.secondary};
11050
11230
  font-family: ${tokens.typography.fontFamily.monospace};
11051
11231
  margin-top: ${tokens.spacing.xs};
11052
11232
  `;
11053
- var Timestamp = styled48.div`
11233
+ var Timestamp = styled50.div`
11054
11234
  font-size: ${tokens.typography.fontSize.xs};
11055
11235
  color: ${tokens.colors.text.tertiary};
11056
11236
  margin-top: ${tokens.spacing.xs};
11057
11237
  `;
11058
- var Details = styled48.details`
11238
+ var Details = styled50.details`
11059
11239
  margin-top: ${tokens.spacing.md};
11060
11240
  cursor: pointer;
11061
11241
 
@@ -11078,12 +11258,12 @@ var Details = styled48.details`
11078
11258
  }
11079
11259
  }
11080
11260
  `;
11081
- var DetailsIcon = styled48.span`
11261
+ var DetailsIcon = styled50.span`
11082
11262
  display: inline-block;
11083
11263
  transition: transform ${tokens.transitions.fast};
11084
11264
  transform: ${(props) => props.open ? "rotate(90deg)" : "rotate(0deg)"};
11085
11265
  `;
11086
- var StackTrace = styled48.pre`
11266
+ var StackTrace = styled50.pre`
11087
11267
  margin: ${tokens.spacing.sm} 0 0 0;
11088
11268
  padding: ${tokens.spacing.md};
11089
11269
  background-color: ${tokens.colors.surface.subtle};
@@ -11096,12 +11276,12 @@ var StackTrace = styled48.pre`
11096
11276
  word-break: break-word;
11097
11277
  overflow-x: auto;
11098
11278
  `;
11099
- var Actions4 = styled48.div`
11279
+ var Actions4 = styled50.div`
11100
11280
  display: flex;
11101
11281
  gap: ${tokens.spacing.sm};
11102
11282
  margin-top: ${tokens.spacing.md};
11103
11283
  `;
11104
- var Button4 = styled48.button`
11284
+ var Button4 = styled50.button`
11105
11285
  display: inline-flex;
11106
11286
  align-items: center;
11107
11287
  gap: ${tokens.spacing.xs};
@@ -11130,7 +11310,7 @@ var Button4 = styled48.button`
11130
11310
  cursor: not-allowed;
11131
11311
  }
11132
11312
  `;
11133
- var CloseButton2 = styled48.button`
11313
+ var CloseButton2 = styled50.button`
11134
11314
  position: absolute;
11135
11315
  top: ${tokens.spacing.md};
11136
11316
  right: ${tokens.spacing.md};
@@ -11304,14 +11484,14 @@ var statusColors2 = {
11304
11484
  failed: tokens.colors.status.failed,
11305
11485
  timeout: tokens.colors.status.timeout
11306
11486
  };
11307
- var Container15 = styled48.div`
11487
+ var Container15 = styled50.div`
11308
11488
  display: flex;
11309
11489
  flex-direction: column;
11310
11490
  gap: ${tokens.spacing.sm};
11311
11491
  width: 100%;
11312
11492
  font-family: ${tokens.typography.fontFamily.primary};
11313
11493
  `;
11314
- var ProgressMessage = styled48.div`
11494
+ var ProgressMessage = styled50.div`
11315
11495
  font-size: ${(props) => {
11316
11496
  switch (props.size) {
11317
11497
  case "sm":
@@ -11326,13 +11506,13 @@ var ProgressMessage = styled48.div`
11326
11506
  color: ${tokens.colors.text.secondary};
11327
11507
  line-height: ${tokens.typography.lineHeight.normal};
11328
11508
  `;
11329
- var ProgressInfo = styled48.div`
11509
+ var ProgressInfo = styled50.div`
11330
11510
  display: flex;
11331
11511
  justify-content: space-between;
11332
11512
  align-items: center;
11333
11513
  margin-bottom: ${tokens.spacing.xs};
11334
11514
  `;
11335
- var PercentageText = styled48.span`
11515
+ var PercentageText = styled50.span`
11336
11516
  font-size: ${(props) => {
11337
11517
  switch (props.size) {
11338
11518
  case "sm":
@@ -11347,7 +11527,7 @@ var PercentageText = styled48.span`
11347
11527
  font-weight: ${tokens.typography.fontWeight.medium};
11348
11528
  color: ${tokens.colors.text.primary};
11349
11529
  `;
11350
- var LinearTrack = styled48.div`
11530
+ var LinearTrack = styled50.div`
11351
11531
  position: relative;
11352
11532
  width: 100%;
11353
11533
  height: ${(props) => {
@@ -11365,7 +11545,7 @@ var LinearTrack = styled48.div`
11365
11545
  border-radius: ${tokens.borderRadius.full};
11366
11546
  overflow: hidden;
11367
11547
  `;
11368
- var LinearFill = styled48.div`
11548
+ var LinearFill = styled50.div`
11369
11549
  position: absolute;
11370
11550
  top: 0;
11371
11551
  left: 0;
@@ -11376,12 +11556,12 @@ var LinearFill = styled48.div`
11376
11556
  transition: ${(props) => props.animated && !props.indeterminate ? `width ${tokens.transitions.normal}` : "none"};
11377
11557
  animation: ${(props) => props.indeterminate ? indeterminate : "none"} 1.5s ease-in-out infinite;
11378
11558
  `;
11379
- var CircularContainer = styled48.div`
11559
+ var CircularContainer = styled50.div`
11380
11560
  display: flex;
11381
11561
  align-items: center;
11382
11562
  justify-content: center;
11383
11563
  `;
11384
- var CircularSvg = styled48.svg`
11564
+ var CircularSvg = styled50.svg`
11385
11565
  width: ${(props) => {
11386
11566
  switch (props.size) {
11387
11567
  case "sm":
@@ -11417,12 +11597,12 @@ var getCircularSize = (size) => {
11417
11597
  return { radius: 26, strokeWidth: 4 };
11418
11598
  }
11419
11599
  };
11420
- var CircularTrack = styled48.circle`
11600
+ var CircularTrack = styled50.circle`
11421
11601
  fill: none;
11422
11602
  stroke: ${tokens.colors.border.default};
11423
11603
  stroke-width: ${(props) => getCircularSize(props.size).strokeWidth};
11424
11604
  `;
11425
- var CircularFill = styled48.circle`
11605
+ var CircularFill = styled50.circle`
11426
11606
  fill: none;
11427
11607
  stroke: ${(props) => statusColors2[props.status]};
11428
11608
  stroke-width: ${(props) => getCircularSize(props.size).strokeWidth};
@@ -11440,7 +11620,7 @@ var CircularFill = styled48.circle`
11440
11620
  transition: ${(props) => props.animated && !props.indeterminate ? `stroke-dashoffset ${tokens.transitions.normal}` : "none"};
11441
11621
  animation: ${(props) => props.indeterminate ? rotate : "none"} 1.5s linear infinite;
11442
11622
  `;
11443
- var CircularPercentage = styled48.text`
11623
+ var CircularPercentage = styled50.text`
11444
11624
  fill: ${tokens.colors.text.primary};
11445
11625
  font-size: ${(props) => {
11446
11626
  switch (props.size) {
@@ -11541,7 +11721,7 @@ var WorkflowProgressBar = ({
11541
11721
  ] });
11542
11722
  };
11543
11723
  WorkflowProgressBar.displayName = "WorkflowProgressBar";
11544
- var Panel = styled48.div`
11724
+ var Panel = styled50.div`
11545
11725
  display: flex;
11546
11726
  flex-direction: column;
11547
11727
  background-color: ${tokens.colors.surface.overlay};
@@ -11550,7 +11730,7 @@ var Panel = styled48.div`
11550
11730
  overflow: hidden;
11551
11731
  font-family: ${tokens.typography.fontFamily.primary};
11552
11732
  `;
11553
- var Header6 = styled48.div`
11733
+ var Header6 = styled50.div`
11554
11734
  display: flex;
11555
11735
  justify-content: space-between;
11556
11736
  align-items: center;
@@ -11564,7 +11744,7 @@ var Header6 = styled48.div`
11564
11744
  background-color: ${(props) => props.collapsible ? tokens.colors.surface.overlay : tokens.colors.surface.subtle};
11565
11745
  }
11566
11746
  `;
11567
- var Title4 = styled48.div`
11747
+ var Title4 = styled50.div`
11568
11748
  font-size: ${tokens.typography.fontSize.sm};
11569
11749
  font-weight: ${tokens.typography.fontWeight.medium};
11570
11750
  color: ${tokens.colors.text.primary};
@@ -11572,11 +11752,11 @@ var Title4 = styled48.div`
11572
11752
  align-items: center;
11573
11753
  gap: ${tokens.spacing.sm};
11574
11754
  `;
11575
- var Actions5 = styled48.div`
11755
+ var Actions5 = styled50.div`
11576
11756
  display: flex;
11577
11757
  gap: ${tokens.spacing.sm};
11578
11758
  `;
11579
- var IconButton = styled48.button`
11759
+ var IconButton = styled50.button`
11580
11760
  display: flex;
11581
11761
  align-items: center;
11582
11762
  justify-content: center;
@@ -11605,7 +11785,7 @@ var IconButton = styled48.button`
11605
11785
  height: 16px;
11606
11786
  }
11607
11787
  `;
11608
- var CollapseIcon2 = styled48.div`
11788
+ var CollapseIcon2 = styled50.div`
11609
11789
  display: flex;
11610
11790
  align-items: center;
11611
11791
  justify-content: center;
@@ -11618,7 +11798,7 @@ var CollapseIcon2 = styled48.div`
11618
11798
  height: 16px;
11619
11799
  }
11620
11800
  `;
11621
- var Content6 = styled48.div`
11801
+ var Content6 = styled50.div`
11622
11802
  padding: ${tokens.spacing.md};
11623
11803
  max-height: ${(props) => {
11624
11804
  if (!props.expanded) return "0";
@@ -11646,7 +11826,7 @@ var Content6 = styled48.div`
11646
11826
  background: ${tokens.colors.scrollbar.thumbHover};
11647
11827
  }
11648
11828
  `;
11649
- var JsonView = styled48.pre`
11829
+ var JsonView = styled50.pre`
11650
11830
  margin: 0;
11651
11831
  font-family: ${tokens.typography.fontFamily.monospace};
11652
11832
  font-size: ${tokens.typography.fontSize.sm};
@@ -11655,12 +11835,12 @@ var JsonView = styled48.pre`
11655
11835
  white-space: pre-wrap;
11656
11836
  word-break: break-word;
11657
11837
  `;
11658
- var FormattedView = styled48.div`
11838
+ var FormattedView = styled50.div`
11659
11839
  font-size: ${tokens.typography.fontSize.sm};
11660
11840
  line-height: ${tokens.typography.lineHeight.normal};
11661
11841
  color: ${tokens.colors.text.secondary};
11662
11842
  `;
11663
- var TableView = styled48.table`
11843
+ var TableView = styled50.table`
11664
11844
  width: 100%;
11665
11845
  border-collapse: collapse;
11666
11846
  font-size: ${tokens.typography.fontSize.sm};
@@ -11684,7 +11864,7 @@ var TableView = styled48.table`
11684
11864
  border-bottom: none;
11685
11865
  }
11686
11866
  `;
11687
- var EmptyState5 = styled48.div`
11867
+ var EmptyState5 = styled50.div`
11688
11868
  padding: ${tokens.spacing.xl};
11689
11869
  text-align: center;
11690
11870
  color: ${tokens.colors.text.tertiary};
@@ -11780,7 +11960,7 @@ var statusColors3 = {
11780
11960
  failed: tokens.colors.status.failed,
11781
11961
  timeout: tokens.colors.status.timeout
11782
11962
  };
11783
- var BadgeContainer2 = styled48.div`
11963
+ var BadgeContainer2 = styled50.div`
11784
11964
  display: inline-flex;
11785
11965
  align-items: center;
11786
11966
  gap: ${(props) => {
@@ -11834,7 +12014,7 @@ var BadgeContainer2 = styled48.div`
11834
12014
  color: ${(props) => statusColors3[props.$status]};
11835
12015
  line-height: 1.4;
11836
12016
  `;
11837
- var IconContainer3 = styled48.div`
12017
+ var IconContainer3 = styled50.div`
11838
12018
  display: flex;
11839
12019
  align-items: center;
11840
12020
  justify-content: center;
@@ -11913,7 +12093,7 @@ var TimeoutIcon = () => /* @__PURE__ */ jsx(
11913
12093
  children: /* @__PURE__ */ jsx("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" })
11914
12094
  }
11915
12095
  );
11916
- var Label2 = styled48.span`
12096
+ var Label2 = styled50.span`
11917
12097
  white-space: nowrap;
11918
12098
  `;
11919
12099
  var getDefaultLabel = (status) => {
@@ -11971,6 +12151,6 @@ var WorkflowStatusBadge = ({
11971
12151
  };
11972
12152
  WorkflowStatusBadge.displayName = "WorkflowStatusBadge";
11973
12153
 
11974
- export { ActionButtons, Actions, AgentState, AssistantMessage, AssistantThinking, Button2 as Button, CATEGORY_CONFIGS, CategoryNav, ChatInput, ConnectionStatusBadge, UserMessage2 as CopilotUserMessage, DarkNotificationCard, FacebookIcon, FileAttachment, Footer, GlobalStyle, GmailIcon, Header, Icon, IconNames, Input2 as Input, InstagramIcon, IntegrationCard, Layout, LinkedInIcon, Messages, MessagesList, MessagesListContainer, MessagesListContent, NavHorizontal, NavVertical, NotificationCard, PLATFORM_CONFIGS, PaneMenus, PaneSectionHeader, PlatformCarousel, PlatformGrid, PostApprovalControls, PostPreviewCard, PostizIcon, RedditEngagementControls, RedditIcon, RedditOpportunityCard, Response, SecretInput, ServiceIcon, SlackIcon, SocialMediaCanvas, StreamErrorMessage, StreamStatusIndicator, StreamingText, Suggestions, TelegramIcon, TokenUsageCard, UserMessage, WhatsAppIcon, Window, WorkflowCard, WorkflowErrorAlert, WorkflowProgressBar, WorkflowResultPanel, WorkflowStatusBadge, WorkflowStatusCard, XIcon, YouTubeIcon, categorizeProgress, clearToolCalls, darkTheme, getCategoryColor, getCategoryIcon, getCharacterCount, getCharacterLimitColor, getCharacterLimitPercentage, isWithinCharLimit, lightTheme, normalizePlatform, registerToolCall, tokens };
12154
+ export { ActionButtons, Actions, AgentState, AssistantMessage, AssistantThinking, BillingToggle, Button2 as Button, CATEGORY_CONFIGS, CategoryNav, ChatInput, ConnectionStatusBadge, UserMessage2 as CopilotUserMessage, DarkNotificationCard, FacebookIcon, FileAttachment, Footer, GlobalStyle, GmailIcon, Header, Icon, IconNames, Input2 as Input, InstagramIcon, IntegrationCard, Layout, LinkedInIcon, Messages, MessagesList, MessagesListContainer, MessagesListContent, NavHorizontal, NavVertical, NotificationCard, PLATFORM_CONFIGS, PaneMenus, PaneSectionHeader, PlatformCarousel, PlatformGrid, PostApprovalControls, PostPreviewCard, PostizIcon, RedditEngagementControls, RedditIcon, RedditOpportunityCard, Response, SecretInput, ServiceIcon, SlackIcon, SocialMediaCanvas, StreamErrorMessage, StreamStatusIndicator, StreamingText, Suggestions, TelegramIcon, TokenUsageCard, TrialPlanCard, UserMessage, WhatsAppIcon, Window, WorkflowCard, WorkflowErrorAlert, WorkflowProgressBar, WorkflowResultPanel, WorkflowStatusBadge, WorkflowStatusCard, XIcon, YouTubeIcon, categorizeProgress, clearToolCalls, darkTheme, getCategoryColor, getCategoryIcon, getCharacterCount, getCharacterLimitColor, getCharacterLimitPercentage, isWithinCharLimit, lightTheme, normalizePlatform, registerToolCall, tokens };
11975
12155
  //# sourceMappingURL=index.js.map
11976
12156
  //# sourceMappingURL=index.js.map