@agentiffai/design 1.3.24 → 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;
@@ -1031,7 +1219,8 @@ var IconNames = {
1031
1219
  HAMMER: "hammer-fill",
1032
1220
  ROCKET: "rocket-fill",
1033
1221
  TICKET: "coupon-2-fill",
1034
- CLIPBOARD: "clipboard-fill"
1222
+ CLIPBOARD: "clipboard-fill",
1223
+ QUESTION_CIRCLE: "question-circle-line"
1035
1224
  };
1036
1225
  var iconFiles = {
1037
1226
  "mic-fill": "Icon-mic-fill.svg",
@@ -1058,7 +1247,8 @@ var iconFiles = {
1058
1247
  "hammer-fill": "Icon-hammer-fill.svg",
1059
1248
  "rocket-fill": "Icon-rocket-fill.svg",
1060
1249
  "coupon-2-fill": "Icon-coupon-2-fill.svg",
1061
- "clipboard-fill": "Icon-clipboard-fill.svg"
1250
+ "clipboard-fill": "Icon-clipboard-fill.svg",
1251
+ "question-circle-line": "Icon-question-circle-line.svg"
1062
1252
  };
1063
1253
  function getIconPath(name) {
1064
1254
  return `${ICON_BASE_PATH}/${iconFiles[name]}`;
@@ -1074,7 +1264,7 @@ function Icon({
1074
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 }) });
1075
1265
  }
1076
1266
  Icon.displayName = "Icon";
1077
- var Container2 = styled48.nav`
1267
+ var Container2 = styled50.nav`
1078
1268
  position: absolute;
1079
1269
  bottom: 0;
1080
1270
  left: 0;
@@ -1094,7 +1284,7 @@ var Container2 = styled48.nav`
1094
1284
  background-color: ${tokens.colors.background.darkest};
1095
1285
  }
1096
1286
  `;
1097
- var ContentWrapper = styled48.div`
1287
+ var ContentWrapper = styled50.div`
1098
1288
  display: flex;
1099
1289
  justify-content: space-between;
1100
1290
  align-items: center;
@@ -1112,7 +1302,7 @@ var ContentWrapper = styled48.div`
1112
1302
  padding: 0 ${tokens.spacing.xs} 0 6px;
1113
1303
  }
1114
1304
  `;
1115
- var UserStatusSlot = styled48.div`
1305
+ var UserStatusSlot = styled50.div`
1116
1306
  display: flex;
1117
1307
  align-items: center;
1118
1308
  min-width: 0; /* Allow flex item to shrink */
@@ -1125,7 +1315,7 @@ var UserStatusSlot = styled48.div`
1125
1315
  white-space: nowrap;
1126
1316
  }
1127
1317
  `;
1128
- var ActionButtonsSlot = styled48.div`
1318
+ var ActionButtonsSlot = styled50.div`
1129
1319
  display: flex;
1130
1320
  align-items: center;
1131
1321
  gap: ${tokens.spacing.xs};
@@ -1148,7 +1338,7 @@ function NavHorizontal({
1148
1338
  ] }) });
1149
1339
  }
1150
1340
  NavHorizontal.displayName = "NavHorizontal";
1151
- var Container3 = styled48.nav`
1341
+ var Container3 = styled50.nav`
1152
1342
  position: absolute;
1153
1343
  top: 0;
1154
1344
  left: 0;
@@ -1158,17 +1348,10 @@ var Container3 = styled48.nav`
1158
1348
  display: flex;
1159
1349
  flex-direction: column;
1160
1350
  z-index: ${tokens.zIndex.base + 9}; /* Below horizontal nav and chat sidebar */
1161
- overflow-y: auto;
1162
- overflow-x: hidden;
1163
- scrollbar-width: none; /* Firefox */
1351
+ overflow: hidden;
1164
1352
  /* Use CSS custom property for coordinated animations with MainPane */
1165
1353
  transition: transform var(--layout-transition-duration, 0.3s) var(--layout-transition-easing, ease-out);
1166
1354
 
1167
- /* Hide scrollbar for Chrome, Safari and Opera */
1168
- &::-webkit-scrollbar {
1169
- display: none;
1170
- }
1171
-
1172
1355
  /* Dark theme support */
1173
1356
  @media (prefers-color-scheme: dark) {
1174
1357
  background-color: ${tokens.colors.background.darkest};
@@ -1179,31 +1362,12 @@ var Container3 = styled48.nav`
1179
1362
  width: 60px; /* Match MainPane left offset on mobile */
1180
1363
  }
1181
1364
 
1182
- /* Mobile landscape: allow content to overflow and scroll with thin scrollbar */
1365
+ /* Mobile landscape */
1183
1366
  @media (orientation: landscape) and (max-height: 500px) {
1184
1367
  width: 60px;
1185
- overflow-y: auto;
1186
- overflow-x: hidden;
1187
- scrollbar-width: thin; /* Firefox - show thin scrollbar */
1188
-
1189
- /* Show thin scrollbar for Chrome, Safari */
1190
- &::-webkit-scrollbar {
1191
- display: block;
1192
- width: 3px;
1193
- height: 3px;
1194
- }
1195
-
1196
- &::-webkit-scrollbar-track {
1197
- background: transparent;
1198
- }
1199
-
1200
- &::-webkit-scrollbar-thumb {
1201
- background: ${tokens.colors.border.default};
1202
- border-radius: 2px;
1203
- }
1204
1368
  }
1205
1369
  `;
1206
- var TopSection = styled48.div`
1370
+ var TopSection = styled50.div`
1207
1371
  display: flex;
1208
1372
  flex-direction: column;
1209
1373
  align-items: center;
@@ -1216,7 +1380,7 @@ var TopSection = styled48.div`
1216
1380
  height: 64px; /* Same as PaneSectionHeader on desktop */
1217
1381
  }
1218
1382
  `;
1219
- var BackButton = styled48.button`
1383
+ var BackButton = styled50.button`
1220
1384
  position: absolute;
1221
1385
  top: 50%;
1222
1386
  left: 50%;
@@ -1252,12 +1416,12 @@ var BackButton = styled48.button`
1252
1416
  outline-offset: 2px;
1253
1417
  }
1254
1418
  `;
1255
- styled48.span`
1419
+ styled50.span`
1256
1420
  font-size: ${tokens.typography.fontSize.xl};
1257
1421
  line-height: ${tokens.typography.lineHeight.tight};
1258
1422
  font-weight: ${tokens.typography.fontWeight.bold};
1259
1423
  `;
1260
- var Separator = styled48.div`
1424
+ var Separator = styled50.div`
1261
1425
  width: 32px;
1262
1426
  height: 2px;
1263
1427
  background-color: ${tokens.colors.background.light};
@@ -1265,13 +1429,15 @@ var Separator = styled48.div`
1265
1429
  margin: ${tokens.spacing.sm} auto ${tokens.spacing.md};
1266
1430
  border-radius: 1px;
1267
1431
  `;
1268
- var FolderGroupsSlot = styled48.div`
1432
+ var FolderGroupsSlot = styled50.div`
1269
1433
  display: flex;
1270
1434
  flex-direction: column;
1271
1435
  align-items: center;
1272
1436
  gap: ${tokens.spacing.sm};
1273
- padding: 0 ${tokens.spacing.md} 120px; /* Extra bottom padding to avoid overlap with BottomSection */
1274
- flex: 1;
1437
+ padding: 0 ${tokens.spacing.md} ${tokens.spacing.md};
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 */
1275
1441
 
1276
1442
  /* Server/workspace icons styling */
1277
1443
  > * {
@@ -1288,40 +1454,38 @@ var FolderGroupsSlot = styled48.div`
1288
1454
 
1289
1455
  /* Responsive adjustments */
1290
1456
  @media (max-width: ${tokens.breakpoints.tablet}px) {
1291
- padding: 0 6px 120px; /* Reduce horizontal padding on mobile */
1292
- }
1293
-
1294
- /* Mobile landscape: remove extra padding since BottomSection flows with content */
1295
- @media (orientation: landscape) and (max-height: 500px) {
1296
- padding-bottom: ${tokens.spacing.md};
1297
- flex: 0 0 auto; /* Don't flex-grow, allow natural height */
1457
+ padding: 0 6px ${tokens.spacing.md}; /* Reduce horizontal padding on mobile */
1298
1458
  }
1299
1459
  `;
1300
- var BottomSection = styled48.div`
1301
- position: absolute;
1302
- bottom: 0;
1303
- left: 0;
1304
- 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 */
1305
1463
  display: flex;
1306
1464
  flex-direction: column;
1307
1465
  align-items: center;
1308
1466
  gap: ${tokens.spacing.sm};
1309
1467
  padding: ${tokens.spacing.md} 0;
1310
- background-color: ${tokens.colors.background.darker};
1468
+ overflow-y: auto;
1469
+ overflow-x: hidden;
1311
1470
 
1312
- @media (prefers-color-scheme: dark) {
1313
- background-color: ${tokens.colors.background.darkest};
1471
+ /* Match NavigationContainer scroll styling */
1472
+ &::-webkit-scrollbar {
1473
+ width: 3px;
1314
1474
  }
1315
1475
 
1316
- /* Mobile landscape: make bottom section flow with content instead of fixed */
1317
- @media (orientation: landscape) and (max-height: 500px) {
1318
- position: relative;
1319
- bottom: auto;
1320
- margin-top: auto; /* Push to bottom of flex container */
1321
- flex-shrink: 0;
1476
+ &::-webkit-scrollbar-track {
1477
+ background: transparent;
1478
+ }
1479
+
1480
+ &::-webkit-scrollbar-thumb {
1481
+ background: ${tokens.colors.border.default};
1482
+ border-radius: 2px;
1322
1483
  }
1484
+
1485
+ scrollbar-width: thin;
1486
+ scrollbar-color: ${tokens.colors.border.default} transparent;
1323
1487
  `;
1324
- var BottomButton = styled48.button`
1488
+ var BottomButton = styled50.button`
1325
1489
  width: 40px;
1326
1490
  height: 40px;
1327
1491
  border-radius: ${tokens.borderRadius.full};
@@ -1357,18 +1521,18 @@ var BottomButton = styled48.button`
1357
1521
  function NavVertical({
1358
1522
  onBackClick,
1359
1523
  onHomeClick,
1524
+ onHelpClick,
1360
1525
  onSettingsClick,
1361
1526
  onLogoutClick,
1362
- onHelpClick,
1363
1527
  folderGroupsSlot,
1364
1528
  className,
1365
1529
  "aria-label": ariaLabel = "Vertical navigation sidebar"
1366
1530
  }) {
1367
1531
  const backButtonRef = useRef(null);
1368
1532
  const homeButtonRef = useRef(null);
1533
+ const helpButtonRef = useRef(null);
1369
1534
  const settingsButtonRef = useRef(null);
1370
1535
  const logoutButtonRef = useRef(null);
1371
- const helpButtonRef = useRef(null);
1372
1536
  const { buttonProps: backButtonProps } = useButton(
1373
1537
  {
1374
1538
  onPress: onBackClick,
@@ -1383,6 +1547,13 @@ function NavVertical({
1383
1547
  },
1384
1548
  homeButtonRef
1385
1549
  );
1550
+ const { buttonProps: helpButtonProps } = useButton(
1551
+ {
1552
+ onPress: onHelpClick,
1553
+ "aria-label": "Help"
1554
+ },
1555
+ helpButtonRef
1556
+ );
1386
1557
  const { buttonProps: settingsButtonProps } = useButton(
1387
1558
  {
1388
1559
  onPress: onSettingsClick,
@@ -1397,27 +1568,20 @@ function NavVertical({
1397
1568
  },
1398
1569
  logoutButtonRef
1399
1570
  );
1400
- const { buttonProps: helpButtonProps } = useButton(
1401
- {
1402
- onPress: onHelpClick,
1403
- "aria-label": "Help"
1404
- },
1405
- helpButtonRef
1406
- );
1407
1571
  const hasBottomButtons = onHelpClick || onSettingsClick || onLogoutClick;
1408
1572
  return /* @__PURE__ */ jsxs(Container3, { className, role: "navigation", "aria-label": ariaLabel, children: [
1409
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 }),
1410
1574
  /* @__PURE__ */ jsx(Separator, {}),
1411
1575
  /* @__PURE__ */ jsx(FolderGroupsSlot, { children: folderGroupsSlot }),
1412
1576
  hasBottomButtons && /* @__PURE__ */ jsxs(BottomSection, { children: [
1413
- onHelpClick && /* @__PURE__ */ jsx(BottomButton, { ...helpButtonProps, ref: helpButtonRef, "data-tour-help-button": true, children: /* @__PURE__ */ jsx(Icon, { name: "question-line", size: 24, color: "white" }) }),
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" }) }),
1414
1578
  onSettingsClick && /* @__PURE__ */ jsx(BottomButton, { ...settingsButtonProps, ref: settingsButtonRef, children: /* @__PURE__ */ jsx(Icon, { name: "settings-3-line", size: 24, color: "white" }) }),
1415
1579
  onLogoutClick && /* @__PURE__ */ jsx(BottomButton, { ...logoutButtonProps, ref: logoutButtonRef, children: /* @__PURE__ */ jsx(Icon, { name: "logout-circle-r-line", size: 24, color: "white" }) })
1416
1580
  ] })
1417
1581
  ] });
1418
1582
  }
1419
1583
  NavVertical.displayName = "NavVertical";
1420
- var Container4 = styled48.div`
1584
+ var Container4 = styled50.div`
1421
1585
  position: relative;
1422
1586
  width: 100%;
1423
1587
  height: 100vh;
@@ -1430,7 +1594,7 @@ var Container4 = styled48.div`
1430
1594
  position: relative;
1431
1595
  }
1432
1596
  `;
1433
- var BackgroundPane = styled48.div`
1597
+ var BackgroundPane = styled50.div`
1434
1598
  position: absolute;
1435
1599
  top: 0;
1436
1600
  left: 72px; /* Width of vertical nav */
@@ -1471,7 +1635,7 @@ var BackgroundPane = styled48.div`
1471
1635
  left: 60px; /* Smaller nav on mobile */
1472
1636
  }
1473
1637
  `;
1474
- var MainPane = styled48.main`
1638
+ var MainPane = styled50.main`
1475
1639
  position: absolute;
1476
1640
  top: 0;
1477
1641
  left: 72px; /* Width of vertical nav */
@@ -1520,9 +1684,9 @@ function Layout({
1520
1684
  navHorizontalActionsSlot,
1521
1685
  onNavBackClick,
1522
1686
  onNavHomeClick,
1687
+ onNavHelpClick,
1523
1688
  onNavSettingsClick,
1524
1689
  onNavLogoutClick,
1525
- onNavHelpClick,
1526
1690
  className
1527
1691
  }) {
1528
1692
  return /* @__PURE__ */ jsxs(Container4, { className, children: [
@@ -1532,9 +1696,9 @@ function Layout({
1532
1696
  folderGroupsSlot: navVerticalSlot,
1533
1697
  onBackClick: onNavBackClick,
1534
1698
  onHomeClick: onNavHomeClick,
1699
+ onHelpClick: onNavHelpClick,
1535
1700
  onSettingsClick: onNavSettingsClick,
1536
- onLogoutClick: onNavLogoutClick,
1537
- onHelpClick: onNavHelpClick
1701
+ onLogoutClick: onNavLogoutClick
1538
1702
  }
1539
1703
  ),
1540
1704
  backgroundSlot && /* @__PURE__ */ jsx(BackgroundPane, { children: backgroundSlot }),
@@ -1549,13 +1713,13 @@ function Layout({
1549
1713
  ] });
1550
1714
  }
1551
1715
  Layout.displayName = "Layout";
1552
- var Container5 = styled48.div`
1716
+ var Container5 = styled50.div`
1553
1717
  display: flex;
1554
1718
  align-items: center;
1555
1719
  justify-content: flex-end;
1556
1720
  gap: ${tokens.spacing.xs};
1557
1721
  `;
1558
- var ActionButton = styled48.button`
1722
+ var ActionButton = styled50.button`
1559
1723
  width: ${({ $size = 32 }) => $size}px;
1560
1724
  height: ${({ $size = 32 }) => $size}px;
1561
1725
  min-width: ${({ $size = 32 }) => $size}px;
@@ -1660,7 +1824,7 @@ var statusColors = {
1660
1824
  busy: tokens.colors.status.busy,
1661
1825
  offline: tokens.colors.status.offline
1662
1826
  };
1663
- var Container6 = styled48.button`
1827
+ var Container6 = styled50.button`
1664
1828
  display: grid;
1665
1829
  grid-template-columns: auto 1fr;
1666
1830
  align-items: center;
@@ -1699,7 +1863,7 @@ var Container6 = styled48.button`
1699
1863
  opacity: 0.9;
1700
1864
  }
1701
1865
  `;
1702
- var IconWrapper2 = styled48.div`
1866
+ var IconWrapper2 = styled50.div`
1703
1867
  position: relative;
1704
1868
  width: 36px;
1705
1869
  height: 36px;
@@ -1710,13 +1874,13 @@ var IconWrapper2 = styled48.div`
1710
1874
  justify-content: center;
1711
1875
  flex-shrink: 0;
1712
1876
  `;
1713
- var WorkflowInfo = styled48.div`
1877
+ var WorkflowInfo = styled50.div`
1714
1878
  display: flex;
1715
1879
  flex-direction: column;
1716
1880
  gap: ${tokens.spacing.xs};
1717
1881
  min-width: 0;
1718
1882
  `;
1719
- var WorkflowName = styled48.span`
1883
+ var WorkflowName = styled50.span`
1720
1884
  color: ${tokens.colors.text.primary};
1721
1885
  font-size: ${tokens.typography.fontSize.sm};
1722
1886
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -1725,14 +1889,14 @@ var WorkflowName = styled48.span`
1725
1889
  text-overflow: ellipsis;
1726
1890
  white-space: nowrap;
1727
1891
  `;
1728
- var WorkflowStatus = styled48.span`
1892
+ var WorkflowStatus = styled50.span`
1729
1893
  color: ${tokens.colors.text.tertiary};
1730
1894
  font-size: ${tokens.typography.fontSize.xs};
1731
1895
  font-weight: ${tokens.typography.fontWeight.regular};
1732
1896
  line-height: ${tokens.typography.lineHeight.tight};
1733
1897
  text-transform: capitalize;
1734
1898
  `;
1735
- var WorkflowSubtitle = styled48.span`
1899
+ var WorkflowSubtitle = styled50.span`
1736
1900
  color: ${tokens.colors.text.tertiary};
1737
1901
  font-size: ${tokens.typography.fontSize.xs};
1738
1902
  font-weight: ${tokens.typography.fontWeight.regular};
@@ -1742,7 +1906,7 @@ var WorkflowSubtitle = styled48.span`
1742
1906
  text-overflow: ellipsis;
1743
1907
  white-space: nowrap;
1744
1908
  `;
1745
- var StatusIndicatorOuter = styled48.span`
1909
+ var StatusIndicatorOuter = styled50.span`
1746
1910
  position: absolute;
1747
1911
  bottom: -2px;
1748
1912
  right: -2px;
@@ -1754,7 +1918,7 @@ var StatusIndicatorOuter = styled48.span`
1754
1918
  align-items: center;
1755
1919
  justify-content: center;
1756
1920
  `;
1757
- var StatusIndicatorInner = styled48.span`
1921
+ var StatusIndicatorInner = styled50.span`
1758
1922
  width: 8px;
1759
1923
  height: 8px;
1760
1924
  border-radius: ${tokens.borderRadius.full};
@@ -1800,7 +1964,7 @@ function WorkflowStatusCard({
1800
1964
  ] });
1801
1965
  }
1802
1966
  WorkflowStatusCard.displayName = "WorkflowStatusCard";
1803
- var DarkNotificationCardContainer = styled48.div`
1967
+ var DarkNotificationCardContainer = styled50.div`
1804
1968
  display: flex;
1805
1969
  flex-direction: column;
1806
1970
  padding: ${tokens.spacing.xs};
@@ -1811,7 +1975,7 @@ var DarkNotificationCardContainer = styled48.div`
1811
1975
  min-width: 0;
1812
1976
  overflow: hidden;
1813
1977
  `;
1814
- var DarkSectionHeader = styled48.button`
1978
+ var DarkSectionHeader = styled50.button`
1815
1979
  display: flex;
1816
1980
  align-items: center;
1817
1981
  justify-content: space-between;
@@ -1837,7 +2001,7 @@ var DarkSectionHeader = styled48.button`
1837
2001
  border-radius: ${tokens.borderRadius.sm};
1838
2002
  }
1839
2003
  `;
1840
- var DarkChevronIcon = styled48.span`
2004
+ var DarkChevronIcon = styled50.span`
1841
2005
  display: inline-flex;
1842
2006
  align-items: center;
1843
2007
  justify-content: center;
@@ -1855,7 +2019,7 @@ var DarkChevronIcon = styled48.span`
1855
2019
  height: 12px;
1856
2020
  }
1857
2021
  `;
1858
- var DarkSectionContent = styled48.div`
2022
+ var DarkSectionContent = styled50.div`
1859
2023
  display: flex;
1860
2024
  flex-direction: column;
1861
2025
  gap: ${tokens.spacing.xs};
@@ -1864,7 +2028,7 @@ var DarkSectionContent = styled48.div`
1864
2028
  min-width: 0;
1865
2029
  overflow: hidden;
1866
2030
  `;
1867
- var DarkNotificationItemWrapper = styled48.button`
2031
+ var DarkNotificationItemWrapper = styled50.button`
1868
2032
  display: flex;
1869
2033
  align-items: center;
1870
2034
  gap: ${tokens.spacing.xs};
@@ -1903,7 +2067,7 @@ var DarkNotificationItemWrapper = styled48.button`
1903
2067
  opacity: 0.5;
1904
2068
  }
1905
2069
  `;
1906
- var DarkItemIcon = styled48.span`
2070
+ var DarkItemIcon = styled50.span`
1907
2071
  display: inline-flex;
1908
2072
  align-items: center;
1909
2073
  justify-content: center;
@@ -1928,7 +2092,7 @@ var DarkItemIcon = styled48.span`
1928
2092
  padding: ${tokens.spacing.xs};
1929
2093
  `}
1930
2094
  `;
1931
- var DarkItemText = styled48.span`
2095
+ var DarkItemText = styled50.span`
1932
2096
  flex: 1;
1933
2097
  font-family: ${tokens.typography.fontFamily.primary};
1934
2098
  font-size: 11px;
@@ -1940,7 +2104,7 @@ var DarkItemText = styled48.span`
1940
2104
  overflow: hidden;
1941
2105
  text-overflow: ellipsis;
1942
2106
  `;
1943
- var DarkMenuButton = styled48.button`
2107
+ var DarkMenuButton = styled50.button`
1944
2108
  display: inline-flex;
1945
2109
  align-items: center;
1946
2110
  justify-content: center;
@@ -1974,7 +2138,7 @@ var DarkMenuButton = styled48.button`
1974
2138
  height: 14px;
1975
2139
  }
1976
2140
  `;
1977
- var DarkTimestamp = styled48.span`
2141
+ var DarkTimestamp = styled50.span`
1978
2142
  font-size: 10px;
1979
2143
  color: ${tokens.colors.text.tertiary};
1980
2144
  white-space: normal;
@@ -2159,7 +2323,7 @@ var DarkNotificationItemComponent = ({
2159
2323
  );
2160
2324
  };
2161
2325
  DarkNotificationCard.displayName = "DarkNotificationCard";
2162
- var Container7 = styled48.div`
2326
+ var Container7 = styled50.div`
2163
2327
  width: 100%;
2164
2328
  height: 100%;
2165
2329
  background-color: transparent;
@@ -2169,7 +2333,7 @@ var Container7 = styled48.div`
2169
2333
  font-family: ${tokens.typography.fontFamily.primary};
2170
2334
  overflow: hidden; // Prevent content from escaping container bounds
2171
2335
  `;
2172
- var TabListWrapper = styled48.div`
2336
+ var TabListWrapper = styled50.div`
2173
2337
  display: flex;
2174
2338
  border-bottom: 2px solid ${tokens.colors.border.default};
2175
2339
  background-color: ${tokens.colors.surface.subtle};
@@ -2189,7 +2353,7 @@ var TabListWrapper = styled48.div`
2189
2353
  gap: ${tokens.spacing.xs};
2190
2354
  }
2191
2355
  `;
2192
- var TabButton = styled48.button`
2356
+ var TabButton = styled50.button`
2193
2357
  padding: ${tokens.spacing.md} ${tokens.spacing.lg};
2194
2358
  background: none;
2195
2359
  border: none;
@@ -2233,7 +2397,7 @@ var TabButton = styled48.button`
2233
2397
  }
2234
2398
  `}
2235
2399
  `;
2236
- var TabPanelWrapper = styled48.div`
2400
+ var TabPanelWrapper = styled50.div`
2237
2401
  flex: 1;
2238
2402
  padding: ${tokens.spacing.lg};
2239
2403
  overflow-y: auto;
@@ -2271,7 +2435,7 @@ var TabPanelWrapper = styled48.div`
2271
2435
  background: ${tokens.colors.scrollbar.thumbHover};
2272
2436
  }
2273
2437
  `;
2274
- var RunsContainer = styled48.div`
2438
+ var RunsContainer = styled50.div`
2275
2439
  display: flex;
2276
2440
  flex-direction: column;
2277
2441
  gap: ${tokens.spacing.lg};
@@ -2284,7 +2448,7 @@ var RunsContainer = styled48.div`
2284
2448
  gap: ${tokens.spacing.md};
2285
2449
  }
2286
2450
  `;
2287
- styled48.button`
2451
+ styled50.button`
2288
2452
  display: flex;
2289
2453
  align-items: center;
2290
2454
  gap: ${tokens.spacing.md};
@@ -2321,7 +2485,7 @@ styled48.button`
2321
2485
  outline-offset: 2px;
2322
2486
  }
2323
2487
  `;
2324
- var StyledDisclosureGroup = styled48(DisclosureGroup)`
2488
+ var StyledDisclosureGroup = styled50(DisclosureGroup)`
2325
2489
  display: flex;
2326
2490
  flex-direction: column;
2327
2491
  gap: ${tokens.spacing.sm};
@@ -2330,7 +2494,7 @@ var StyledDisclosureGroup = styled48(DisclosureGroup)`
2330
2494
  min-width: 0;
2331
2495
  overflow: hidden;
2332
2496
  `;
2333
- var CategoryDisclosure = styled48(Disclosure)`
2497
+ var CategoryDisclosure = styled50(Disclosure)`
2334
2498
  background-color: transparent;
2335
2499
  display: flex;
2336
2500
  flex-direction: column;
@@ -2348,7 +2512,7 @@ var CategoryDisclosure = styled48(Disclosure)`
2348
2512
  cursor: not-allowed;
2349
2513
  }
2350
2514
  `;
2351
- var CategoryHeader = styled48(Button)`
2515
+ var CategoryHeader = styled50(Button)`
2352
2516
  width: 100%;
2353
2517
  padding: ${tokens.spacing.xs} 0;
2354
2518
  background: none;
@@ -2378,7 +2542,7 @@ var CategoryHeader = styled48(Button)`
2378
2542
  border-radius: ${tokens.borderRadius.sm};
2379
2543
  }
2380
2544
  `;
2381
- var CategoryTitle = styled48.div`
2545
+ var CategoryTitle = styled50.div`
2382
2546
  display: flex;
2383
2547
  align-items: center;
2384
2548
  gap: ${tokens.spacing.sm};
@@ -2387,7 +2551,7 @@ var CategoryTitle = styled48.div`
2387
2551
  gap: ${tokens.spacing.xs};
2388
2552
  }
2389
2553
  `;
2390
- styled48.img`
2554
+ styled50.img`
2391
2555
  width: 16px;
2392
2556
  height: 16px;
2393
2557
  opacity: 0.6;
@@ -2398,7 +2562,7 @@ styled48.img`
2398
2562
  height: 14px;
2399
2563
  }
2400
2564
  `;
2401
- var HashtagIcon = styled48.img`
2565
+ var HashtagIcon = styled50.img`
2402
2566
  width: 14px;
2403
2567
  height: 14px;
2404
2568
  opacity: 0.6;
@@ -2409,7 +2573,7 @@ var HashtagIcon = styled48.img`
2409
2573
  height: 12px;
2410
2574
  }
2411
2575
  `;
2412
- var ChevronIcon = styled48.div`
2576
+ var ChevronIcon = styled50.div`
2413
2577
  display: flex;
2414
2578
  align-items: center;
2415
2579
  transition: transform ${tokens.transitions.normal};
@@ -2430,7 +2594,7 @@ var ChevronIcon = styled48.div`
2430
2594
  }
2431
2595
  }
2432
2596
  `;
2433
- var CategoryDisclosurePanel = styled48(DisclosurePanel)`
2597
+ var CategoryDisclosurePanel = styled50(DisclosurePanel)`
2434
2598
  display: flex;
2435
2599
  flex-direction: column;
2436
2600
  gap: 2px;
@@ -2459,7 +2623,7 @@ var CategoryDisclosurePanel = styled48(DisclosurePanel)`
2459
2623
  }
2460
2624
  }
2461
2625
  `;
2462
- var ItemContainer = styled48.div`
2626
+ var ItemContainer = styled50.div`
2463
2627
  display: flex;
2464
2628
  align-items: center;
2465
2629
  gap: ${tokens.spacing.sm};
@@ -2479,7 +2643,7 @@ var ItemContainer = styled48.div`
2479
2643
  background-color: ${tokens.colors.surface.overlayHover};
2480
2644
  }
2481
2645
  `;
2482
- var ItemDisclosure = styled48(Disclosure)`
2646
+ var ItemDisclosure = styled50(Disclosure)`
2483
2647
  background-color: transparent;
2484
2648
  margin-bottom: ${tokens.spacing.xs};
2485
2649
  display: flex;
@@ -2494,7 +2658,7 @@ var ItemDisclosure = styled48(Disclosure)`
2494
2658
  border-radius: ${tokens.borderRadius.md};
2495
2659
  }
2496
2660
  `;
2497
- var ItemHeader = styled48(Button)`
2661
+ var ItemHeader = styled50(Button)`
2498
2662
  width: 100%;
2499
2663
  padding: 0;
2500
2664
  background: none;
@@ -2512,7 +2676,7 @@ var ItemHeader = styled48(Button)`
2512
2676
  border-radius: ${tokens.borderRadius.sm};
2513
2677
  }
2514
2678
  `;
2515
- var ItemDisclosurePanel = styled48(DisclosurePanel)`
2679
+ var ItemDisclosurePanel = styled50(DisclosurePanel)`
2516
2680
  padding: ${tokens.spacing.xs};
2517
2681
  background-color: ${tokens.colors.overlay};
2518
2682
  border-radius: 0 0 ${tokens.borderRadius.md} ${tokens.borderRadius.md};
@@ -2542,7 +2706,7 @@ var ItemDisclosurePanel = styled48(DisclosurePanel)`
2542
2706
  }
2543
2707
  }
2544
2708
  `;
2545
- var ItemIcon = styled48.img`
2709
+ var ItemIcon = styled50.img`
2546
2710
  width: 20px;
2547
2711
  height: 20px;
2548
2712
  opacity: 0.6;
@@ -2553,7 +2717,7 @@ var ItemIcon = styled48.img`
2553
2717
  height: 18px;
2554
2718
  }
2555
2719
  `;
2556
- var ItemName = styled48.span`
2720
+ var ItemName = styled50.span`
2557
2721
  flex: 1;
2558
2722
  font-size: ${tokens.typography.fontSize.sm};
2559
2723
  color: ${(props) => props.$dimmed ? tokens.colors.text.tertiary : tokens.colors.text.secondary};
@@ -2571,7 +2735,7 @@ var ItemName = styled48.span`
2571
2735
  color: ${(props) => props.$dimmed ? tokens.colors.text.secondary : tokens.colors.text.primary};
2572
2736
  }
2573
2737
  `;
2574
- var RunStatus = styled48.span`
2738
+ var RunStatus = styled50.span`
2575
2739
  display: flex;
2576
2740
  align-items: center;
2577
2741
  justify-content: center;
@@ -2603,13 +2767,13 @@ var RunStatus = styled48.span`
2603
2767
  font-size: ${tokens.typography.fontSize.xs};
2604
2768
  }
2605
2769
  `;
2606
- styled48.div`
2770
+ styled50.div`
2607
2771
  margin-bottom: ${tokens.spacing.md};
2608
2772
  border-radius: ${tokens.borderRadius.lg};
2609
2773
  background-color: ${tokens.colors.surface.overlay};
2610
2774
  overflow: hidden;
2611
2775
  `;
2612
- styled48.button`
2776
+ styled50.button`
2613
2777
  width: 100%;
2614
2778
  padding: ${tokens.spacing.md};
2615
2779
  background: ${tokens.colors.surface.overlay};
@@ -2645,13 +2809,13 @@ styled48.button`
2645
2809
  margin-bottom: ${tokens.spacing.xs};
2646
2810
  }
2647
2811
  `;
2648
- styled48.span`
2812
+ styled50.span`
2649
2813
  font-size: ${tokens.typography.fontSize.xs};
2650
2814
  color: ${tokens.colors.text.secondary};
2651
2815
  transition: transform ${tokens.transitions.normal};
2652
2816
  transform: ${(props) => props.$isExpanded ? "rotate(180deg)" : "rotate(0deg)"};
2653
2817
  `;
2654
- styled48.div`
2818
+ styled50.div`
2655
2819
  padding: ${tokens.spacing.md};
2656
2820
  padding-top: 0;
2657
2821
  background-color: ${tokens.colors.overlay};
@@ -2671,17 +2835,17 @@ styled48.div`
2671
2835
  }
2672
2836
  }
2673
2837
  `;
2674
- var MeterContainer = styled48.div`
2838
+ var MeterContainer = styled50.div`
2675
2839
  max-width: 600px;
2676
2840
  margin: 0 auto;
2677
2841
  `;
2678
- var MeterLabel = styled48.div`
2842
+ var MeterLabel = styled50.div`
2679
2843
  font-size: ${tokens.typography.fontSize.base};
2680
2844
  font-weight: ${tokens.typography.fontWeight.semibold};
2681
2845
  margin-bottom: ${tokens.spacing.md};
2682
2846
  color: ${tokens.colors.text.primary};
2683
2847
  `;
2684
- var MeterBar = styled48.div`
2848
+ var MeterBar = styled50.div`
2685
2849
  width: 100%;
2686
2850
  height: 24px;
2687
2851
  background-color: ${tokens.colors.background.darker};
@@ -2690,7 +2854,7 @@ var MeterBar = styled48.div`
2690
2854
  position: relative;
2691
2855
  margin-bottom: ${tokens.spacing.md};
2692
2856
  `;
2693
- var MeterFill = styled48.div`
2857
+ var MeterFill = styled50.div`
2694
2858
  height: 100%;
2695
2859
  width: ${(props) => props.$percentage}%;
2696
2860
  background: linear-gradient(90deg, ${(props) => props.$color}dd, ${(props) => props.$color});
@@ -2718,7 +2882,7 @@ var MeterFill = styled48.div`
2718
2882
  }
2719
2883
  }
2720
2884
  `;
2721
- var MeterStats = styled48.div`
2885
+ var MeterStats = styled50.div`
2722
2886
  font-size: ${tokens.typography.fontSize.sm};
2723
2887
  color: ${tokens.colors.text.secondary};
2724
2888
  text-align: center;
@@ -2729,18 +2893,18 @@ var MeterStats = styled48.div`
2729
2893
  opacity: 0.8;
2730
2894
  }
2731
2895
  `;
2732
- var ConnectionsContainer = styled48.div`
2896
+ var ConnectionsContainer = styled50.div`
2733
2897
  max-width: 500px;
2734
2898
  margin: 0 auto;
2735
2899
  text-align: center;
2736
2900
  `;
2737
- var ConnectionDescription = styled48.p`
2901
+ var ConnectionDescription = styled50.p`
2738
2902
  font-size: ${tokens.typography.fontSize.sm};
2739
2903
  color: ${tokens.colors.text.secondary};
2740
2904
  line-height: ${tokens.typography.lineHeight.relaxed};
2741
2905
  margin-bottom: ${tokens.spacing.lg};
2742
2906
  `;
2743
- var GoogleButton = styled48.button`
2907
+ var GoogleButton = styled50.button`
2744
2908
  width: 100%;
2745
2909
  padding: ${tokens.spacing.md} ${tokens.spacing.lg};
2746
2910
  font-size: ${tokens.typography.fontSize.sm};
@@ -3194,7 +3358,7 @@ function PaneMenus({
3194
3358
  /* @__PURE__ */ jsx(TabPanel, { state }, state.selectedItem?.key)
3195
3359
  ] });
3196
3360
  }
3197
- var Container8 = styled48.header`
3361
+ var Container8 = styled50.header`
3198
3362
  position: relative;
3199
3363
  width: 100%;
3200
3364
  height: 56px;
@@ -3257,7 +3421,7 @@ var Container8 = styled48.header`
3257
3421
  background-color: ${tokens.colors.backdrop};
3258
3422
  }
3259
3423
  `;
3260
- var BrandLogo = styled48.img`
3424
+ var BrandLogo = styled50.img`
3261
3425
  position: relative;
3262
3426
  z-index: 1;
3263
3427
  max-height: 28px;
@@ -3272,7 +3436,7 @@ var BrandLogo = styled48.img`
3272
3436
  max-height: 32px;
3273
3437
  }
3274
3438
  `;
3275
- var SettingsButton = styled48.button`
3439
+ var SettingsButton = styled50.button`
3276
3440
  position: absolute;
3277
3441
  top: 50%;
3278
3442
  right: ${tokens.spacing.md};
@@ -3326,7 +3490,7 @@ var SettingsButton = styled48.button`
3326
3490
  right: ${tokens.spacing.lg};
3327
3491
  }
3328
3492
  `;
3329
- var BackButton2 = styled48.button`
3493
+ var BackButton2 = styled50.button`
3330
3494
  position: absolute;
3331
3495
  top: 50%;
3332
3496
  left: ${tokens.spacing.md};
@@ -3433,7 +3597,7 @@ function PaneSectionHeader({
3433
3597
  ] });
3434
3598
  }
3435
3599
  PaneSectionHeader.displayName = "PaneSectionHeader";
3436
- var Container9 = styled48.button`
3600
+ var Container9 = styled50.button`
3437
3601
  /* Base button styling */
3438
3602
  width: 48px;
3439
3603
  height: 48px;
@@ -3482,7 +3646,7 @@ var Container9 = styled48.button`
3482
3646
  cursor: not-allowed;
3483
3647
  }
3484
3648
  `;
3485
- var LogoImage = styled48.img`
3649
+ var LogoImage = styled50.img`
3486
3650
  width: 100%;
3487
3651
  height: 100%;
3488
3652
  object-fit: contain;
@@ -3501,7 +3665,7 @@ function ServiceIcon({ brand, active = false, className, ...ariaProps }) {
3501
3665
  return /* @__PURE__ */ jsx(Container9, { ...buttonProps, ref, $active: active, className, children: /* @__PURE__ */ jsx(LogoImage, { src: `/assets/icons/Brand/${brand}.svg`, alt: brand }) });
3502
3666
  }
3503
3667
  ServiceIcon.displayName = "ServiceIcon";
3504
- var NotificationCardContainer = styled48.div`
3668
+ var NotificationCardContainer = styled50.div`
3505
3669
  display: flex;
3506
3670
  flex-direction: column;
3507
3671
  width: 100%;
@@ -3512,7 +3676,7 @@ var NotificationCardContainer = styled48.div`
3512
3676
  box-shadow: ${tokens.shadows.card};
3513
3677
  gap: ${tokens.spacing.md};
3514
3678
  `;
3515
- var SectionHeader = styled48.button`
3679
+ var SectionHeader = styled50.button`
3516
3680
  display: flex;
3517
3681
  align-items: center;
3518
3682
  justify-content: space-between;
@@ -3538,7 +3702,7 @@ var SectionHeader = styled48.button`
3538
3702
  border-radius: ${tokens.borderRadius.md};
3539
3703
  }
3540
3704
  `;
3541
- var ChevronIcon2 = styled48.span`
3705
+ var ChevronIcon2 = styled50.span`
3542
3706
  display: inline-flex;
3543
3707
  align-items: center;
3544
3708
  justify-content: center;
@@ -3556,14 +3720,14 @@ var ChevronIcon2 = styled48.span`
3556
3720
  height: 16px;
3557
3721
  }
3558
3722
  `;
3559
- var SectionContent = styled48.div`
3723
+ var SectionContent = styled50.div`
3560
3724
  display: flex;
3561
3725
  flex-direction: column;
3562
3726
  gap: ${tokens.spacing.sm};
3563
3727
  padding-left: 0;
3564
3728
  margin-top: ${tokens.spacing.xs};
3565
3729
  `;
3566
- var NotificationItemWrapper = styled48.button`
3730
+ var NotificationItemWrapper = styled50.button`
3567
3731
  display: flex;
3568
3732
  align-items: center;
3569
3733
  gap: ${tokens.spacing.md};
@@ -3600,7 +3764,7 @@ var NotificationItemWrapper = styled48.button`
3600
3764
  opacity: 0.5;
3601
3765
  }
3602
3766
  `;
3603
- var ItemIcon2 = styled48.span`
3767
+ var ItemIcon2 = styled50.span`
3604
3768
  display: inline-flex;
3605
3769
  align-items: center;
3606
3770
  justify-content: center;
@@ -3625,7 +3789,7 @@ var ItemIcon2 = styled48.span`
3625
3789
  padding: ${tokens.spacing.xs};
3626
3790
  `}
3627
3791
  `;
3628
- var ItemText = styled48.span`
3792
+ var ItemText = styled50.span`
3629
3793
  flex: 1;
3630
3794
  font-family: ${tokens.typography.fontFamily.primary};
3631
3795
  font-size: 15px;
@@ -3634,7 +3798,7 @@ var ItemText = styled48.span`
3634
3798
  line-height: ${tokens.typography.lineHeight.normal};
3635
3799
  word-wrap: break-word;
3636
3800
  `;
3637
- var MenuButton = styled48.button`
3801
+ var MenuButton = styled50.button`
3638
3802
  display: inline-flex;
3639
3803
  align-items: center;
3640
3804
  justify-content: center;
@@ -3844,7 +4008,7 @@ var NotificationItemComponent = ({
3844
4008
  );
3845
4009
  };
3846
4010
  NotificationCard.displayName = "NotificationCard";
3847
- var StyledUserMessage = styled48.button`
4011
+ var StyledUserMessage = styled50.button`
3848
4012
  /* Base styles */
3849
4013
  display: inline-flex;
3850
4014
  align-items: center;
@@ -4184,7 +4348,7 @@ var ConnectionStatusBadge = ({
4184
4348
  );
4185
4349
  };
4186
4350
  ConnectionStatusBadge.displayName = "ConnectionStatusBadge";
4187
- var Badge = styled48.span`
4351
+ var Badge = styled50.span`
4188
4352
  display: inline-flex;
4189
4353
  align-items: center;
4190
4354
  padding: ${({ $size }) => $size === "sm" ? `${tokens.spacing.xs} 6px` : `${tokens.spacing.xs} ${tokens.spacing.sm}`};
@@ -4220,7 +4384,7 @@ var IntegrationCard = ({
4220
4384
  ] });
4221
4385
  };
4222
4386
  IntegrationCard.displayName = "IntegrationCard";
4223
- var Card = styled48.div`
4387
+ var Card = styled50.div`
4224
4388
  display: flex;
4225
4389
  flex-direction: column;
4226
4390
  gap: ${tokens.spacing.sm};
@@ -4240,11 +4404,11 @@ var Card = styled48.div`
4240
4404
  border-color: ${tokens.colors.border.hover};
4241
4405
  }
4242
4406
  `;
4243
- var StatusRow = styled48.div`
4407
+ var StatusRow = styled50.div`
4244
4408
  display: flex;
4245
4409
  align-items: center;
4246
4410
  `;
4247
- var ContentHeader = styled48.div`
4411
+ var ContentHeader = styled50.div`
4248
4412
  display: flex;
4249
4413
  align-items: flex-start;
4250
4414
  gap: ${tokens.spacing.sm};
@@ -4253,7 +4417,7 @@ var ContentHeader = styled48.div`
4253
4417
  gap: ${tokens.spacing.xs};
4254
4418
  }
4255
4419
  `;
4256
- var IconWrapper3 = styled48.div`
4420
+ var IconWrapper3 = styled50.div`
4257
4421
  width: 40px;
4258
4422
  height: 40px;
4259
4423
  display: flex;
@@ -4263,32 +4427,32 @@ var IconWrapper3 = styled48.div`
4263
4427
  background: ${tokens.colors.background.light};
4264
4428
  flex-shrink: 0;
4265
4429
  `;
4266
- var IconImage = styled48.img`
4430
+ var IconImage = styled50.img`
4267
4431
  width: 24px;
4268
4432
  height: 24px;
4269
4433
  object-fit: contain;
4270
4434
  `;
4271
- var Info = styled48.div`
4435
+ var Info = styled50.div`
4272
4436
  display: flex;
4273
4437
  flex-direction: column;
4274
4438
  gap: 2px;
4275
4439
  min-width: 0;
4276
4440
  flex: 1;
4277
4441
  `;
4278
- var Name = styled48.h3`
4442
+ var Name = styled50.h3`
4279
4443
  margin: 0;
4280
4444
  font-size: ${tokens.typography.fontSize.sm};
4281
4445
  font-weight: ${tokens.typography.fontWeight.semibold};
4282
4446
  color: ${tokens.colors.text.primary};
4283
4447
  line-height: ${tokens.typography.lineHeight.tight};
4284
4448
  `;
4285
- var Description = styled48.p`
4449
+ var Description = styled50.p`
4286
4450
  margin: 0;
4287
4451
  font-size: ${tokens.typography.fontSize.xs};
4288
4452
  color: ${tokens.colors.text.tertiary};
4289
4453
  line-height: ${tokens.typography.lineHeight.normal};
4290
4454
  `;
4291
- var ActionsRow = styled48.div`
4455
+ var ActionsRow = styled50.div`
4292
4456
  display: flex;
4293
4457
  flex-direction: column;
4294
4458
  gap: ${tokens.spacing.sm};
@@ -4346,14 +4510,14 @@ var SecretInput = ({
4346
4510
  ] });
4347
4511
  };
4348
4512
  SecretInput.displayName = "SecretInput";
4349
- var Container10 = styled48.div`
4513
+ var Container10 = styled50.div`
4350
4514
  position: relative;
4351
4515
  display: flex;
4352
4516
  align-items: center;
4353
4517
  width: 100%;
4354
4518
  min-width: 0;
4355
4519
  `;
4356
- var Input = styled48.input`
4520
+ var Input = styled50.input`
4357
4521
  width: 100%;
4358
4522
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
4359
4523
  padding-right: 40px;
@@ -4379,7 +4543,7 @@ var Input = styled48.input`
4379
4543
  cursor: not-allowed;
4380
4544
  }
4381
4545
  `;
4382
- var VisibilityToggle = styled48.button`
4546
+ var VisibilityToggle = styled50.button`
4383
4547
  position: absolute;
4384
4548
  right: ${tokens.spacing.sm};
4385
4549
  top: 50%;
@@ -4515,7 +4679,7 @@ function parseInlineMarkdown(text, startKey) {
4515
4679
  }
4516
4680
  return { elements, nextKey: key };
4517
4681
  }
4518
- var Container11 = styled48.div`
4682
+ var Container11 = styled50.div`
4519
4683
  font-family: ${(props) => props.$variant === "code" ? tokens.typography.fontFamily.monospace : tokens.typography.fontFamily.primary};
4520
4684
  white-space: pre-wrap;
4521
4685
  word-break: break-word;
@@ -4580,7 +4744,7 @@ var Container11 = styled48.div`
4580
4744
  h3 { font-size: 1.05em; font-weight: ${tokens.typography.fontWeight.semibold}; }
4581
4745
  h4 { font-size: 1em; font-weight: ${tokens.typography.fontWeight.semibold}; }
4582
4746
  `;
4583
- var Cursor = styled48.span`
4747
+ var Cursor = styled50.span`
4584
4748
  display: inline-block;
4585
4749
  width: 2px;
4586
4750
  height: 1em;
@@ -4636,7 +4800,7 @@ var StreamingTextBase = ({
4636
4800
  };
4637
4801
  var StreamingText = memo(StreamingTextBase);
4638
4802
  StreamingText.displayName = "StreamingText";
4639
- var MessageContainer = styled48.div`
4803
+ var MessageContainer = styled50.div`
4640
4804
  display: flex;
4641
4805
  flex-direction: column;
4642
4806
  gap: ${tokens.spacing.xs};
@@ -4646,20 +4810,20 @@ var MessageContainer = styled48.div`
4646
4810
  will-change: contents;
4647
4811
  contain: content;
4648
4812
  `;
4649
- var AvatarContainer = styled48.div`
4813
+ var AvatarContainer = styled50.div`
4650
4814
  display: flex;
4651
4815
  align-items: center;
4652
4816
  gap: ${tokens.spacing.xs};
4653
4817
  flex-shrink: 0;
4654
4818
  `;
4655
- var Avatar2 = styled48.img`
4819
+ var Avatar2 = styled50.img`
4656
4820
  width: 20px;
4657
4821
  height: 20px;
4658
4822
  border-radius: ${tokens.borderRadius.full};
4659
4823
  object-fit: cover;
4660
4824
  background-color: transparent;
4661
4825
  `;
4662
- var AvatarInitials = styled48.div`
4826
+ var AvatarInitials = styled50.div`
4663
4827
  width: 20px;
4664
4828
  height: 20px;
4665
4829
  border-radius: ${tokens.borderRadius.full};
@@ -4677,16 +4841,16 @@ var AvatarInitials = styled48.div`
4677
4841
  object-fit: contain;
4678
4842
  }
4679
4843
  `;
4680
- var AvatarLabel = styled48.span`
4844
+ var AvatarLabel = styled50.span`
4681
4845
  font-size: ${tokens.typography.fontSize.xs};
4682
4846
  font-weight: ${tokens.typography.fontWeight.medium};
4683
4847
  color: ${tokens.colors.text.secondary};
4684
4848
  `;
4685
- var ContentContainer = styled48.div`
4849
+ var ContentContainer = styled50.div`
4686
4850
  width: 100%;
4687
4851
  min-width: 0;
4688
4852
  `;
4689
- var MessageContent = styled48.div`
4853
+ var MessageContent = styled50.div`
4690
4854
  /* Use solid color instead of backdrop-filter for performance during streaming */
4691
4855
  background-color: ${tokens.colors.surface.elevated};
4692
4856
  padding: ${tokens.spacing.sm};
@@ -4700,7 +4864,7 @@ var MessageContent = styled48.div`
4700
4864
  /* Optimize text rendering */
4701
4865
  text-rendering: optimizeSpeed;
4702
4866
  `;
4703
- var LoadingDots2 = styled48.div`
4867
+ var LoadingDots2 = styled50.div`
4704
4868
  display: flex;
4705
4869
  gap: ${tokens.spacing.xs};
4706
4870
  padding: ${tokens.spacing.sm};
@@ -4717,7 +4881,7 @@ var pulse2 = keyframes`
4717
4881
  opacity: 1;
4718
4882
  }
4719
4883
  `;
4720
- var LoadingDot = styled48.div`
4884
+ var LoadingDot = styled50.div`
4721
4885
  width: ${tokens.spacing.sm};
4722
4886
  height: ${tokens.spacing.sm};
4723
4887
  border-radius: ${tokens.borderRadius.full};
@@ -4726,7 +4890,7 @@ var LoadingDot = styled48.div`
4726
4890
  animation: ${pulse2} 1.4s ease-in-out infinite;
4727
4891
  animation-delay: ${(props) => props.delay}s;
4728
4892
  `;
4729
- var FileAttachmentContainer = styled48.div`
4893
+ var FileAttachmentContainer = styled50.div`
4730
4894
  display: flex;
4731
4895
  align-items: center;
4732
4896
  gap: ${tokens.spacing.sm};
@@ -4762,7 +4926,7 @@ var FileAttachmentContainer = styled48.div`
4762
4926
  }
4763
4927
  `}
4764
4928
  `;
4765
- var FileIconContainer = styled48.div`
4929
+ var FileIconContainer = styled50.div`
4766
4930
  flex-shrink: 0;
4767
4931
  width: ${tokens.spacing.xl};
4768
4932
  height: ${tokens.spacing.xl};
@@ -4772,14 +4936,14 @@ var FileIconContainer = styled48.div`
4772
4936
  font-size: ${tokens.typography.fontSize["2xl"]};
4773
4937
  line-height: 1;
4774
4938
  `;
4775
- var FileInfo = styled48.div`
4939
+ var FileInfo = styled50.div`
4776
4940
  flex: 1;
4777
4941
  min-width: 0;
4778
4942
  display: flex;
4779
4943
  flex-direction: column;
4780
4944
  gap: 2px;
4781
4945
  `;
4782
- var FileTitle = styled48.div`
4946
+ var FileTitle = styled50.div`
4783
4947
  font-size: ${tokens.typography.fontSize.sm};
4784
4948
  font-weight: ${tokens.typography.fontWeight.medium};
4785
4949
  color: ${tokens.colors.text.primary};
@@ -4789,7 +4953,7 @@ var FileTitle = styled48.div`
4789
4953
  text-overflow: ellipsis;
4790
4954
  white-space: nowrap;
4791
4955
  `;
4792
- var FileMetadata = styled48.div`
4956
+ var FileMetadata = styled50.div`
4793
4957
  display: flex;
4794
4958
  align-items: center;
4795
4959
  gap: ${tokens.spacing.xs};
@@ -4799,7 +4963,7 @@ var FileMetadata = styled48.div`
4799
4963
  line-height: ${tokens.typography.lineHeight.tight};
4800
4964
  overflow: hidden;
4801
4965
  `;
4802
- var FileSubtitle = styled48.span`
4966
+ var FileSubtitle = styled50.span`
4803
4967
  color: ${tokens.colors.text.tertiary};
4804
4968
  white-space: nowrap;
4805
4969
  overflow: hidden;
@@ -4855,13 +5019,13 @@ var FileAttachment = ({
4855
5019
  }
4856
5020
  );
4857
5021
  };
4858
- var AttachmentsContainer = styled48.div`
5022
+ var AttachmentsContainer = styled50.div`
4859
5023
  display: flex;
4860
5024
  flex-direction: column;
4861
5025
  gap: ${tokens.spacing.sm};
4862
5026
  margin-top: ${tokens.spacing.sm};
4863
5027
  `;
4864
- var ActionButton2 = styled48.button`
5028
+ var ActionButton2 = styled50.button`
4865
5029
  display: inline-flex;
4866
5030
  align-items: center;
4867
5031
  gap: ${tokens.spacing.xs};
@@ -4885,19 +5049,19 @@ var ActionButton2 = styled48.button`
4885
5049
  transform: scale(0.98);
4886
5050
  }
4887
5051
  `;
4888
- var ActionsContainer = styled48.div`
5052
+ var ActionsContainer = styled50.div`
4889
5053
  display: flex;
4890
5054
  gap: ${tokens.spacing.xs};
4891
5055
  flex-wrap: wrap;
4892
5056
  margin-top: ${tokens.spacing.sm};
4893
5057
  `;
4894
- var MessageTime = styled48.time`
5058
+ var MessageTime = styled50.time`
4895
5059
  font-size: ${tokens.typography.fontSize.xs};
4896
5060
  color: ${tokens.colors.text.tertiary};
4897
5061
  margin-top: ${tokens.spacing.xs};
4898
5062
  display: block;
4899
5063
  `;
4900
- var StreamingIndicator = styled48.span`
5064
+ var StreamingIndicator = styled50.span`
4901
5065
  display: inline-block;
4902
5066
  width: ${tokens.spacing.xs};
4903
5067
  height: ${tokens.spacing.xs};
@@ -4990,13 +5154,14 @@ function stripToolCallMarkers(content) {
4990
5154
  stripped = stripped.replace(/__TOOL_CALL__:[^:]+:\{[^}]*(?:\{[^}]*\}[^}]*)*\}/g, "");
4991
5155
  stripped = stripped.replace(/<!--TOOL_CALL:[\s\S]*$/g, "");
4992
5156
  stripped = stripped.replace(/__TOOL_CALL__:[\s\S]*$/g, "");
5157
+ stripped = stripped.replace(/[",]*\s*"[a-z_]+":\s*"[^"]*"\s*\}["]?/gi, "");
4993
5158
  return stripped.trim();
4994
5159
  }
4995
- var GenerativeUIContainer = styled48.div`
5160
+ var GenerativeUIContainer = styled50.div`
4996
5161
  margin-top: ${tokens.spacing.sm};
4997
5162
  margin-bottom: ${tokens.spacing.sm};
4998
5163
  `;
4999
- styled48.div`
5164
+ styled50.div`
5000
5165
  display: flex;
5001
5166
  align-items: center;
5002
5167
  gap: ${tokens.spacing.sm};
@@ -5008,12 +5173,12 @@ styled48.div`
5008
5173
  font-size: ${tokens.typography.fontSize.xs};
5009
5174
  color: ${tokens.colors.text.secondary};
5010
5175
  `;
5011
- styled48.span`
5176
+ styled50.span`
5012
5177
  display: flex;
5013
5178
  align-items: center;
5014
5179
  color: ${tokens.colors.primary};
5015
5180
  `;
5016
- styled48.span`
5181
+ styled50.span`
5017
5182
  font-weight: ${tokens.typography.fontWeight.medium};
5018
5183
  color: ${tokens.colors.text.primary};
5019
5184
  `;
@@ -5154,7 +5319,7 @@ var sizeStyles = {
5154
5319
  height: 44px;
5155
5320
  `
5156
5321
  };
5157
- var StyledButton = styled48.button`
5322
+ var StyledButton = styled50.button`
5158
5323
  /* Base styles */
5159
5324
  display: inline-flex;
5160
5325
  align-items: center;
@@ -5237,7 +5402,7 @@ function Button2({
5237
5402
  );
5238
5403
  }
5239
5404
  Button2.displayName = "Button";
5240
- var ActionsContainer2 = styled48.div`
5405
+ var ActionsContainer2 = styled50.div`
5241
5406
  display: flex;
5242
5407
  gap: ${tokens.spacing.sm};
5243
5408
  align-items: center;
@@ -5297,7 +5462,7 @@ var blink = keyframes`
5297
5462
  opacity: 0;
5298
5463
  }
5299
5464
  `;
5300
- var ResponseContainer = styled48.div`
5465
+ var ResponseContainer = styled50.div`
5301
5466
  display: inline-flex;
5302
5467
  align-items: center;
5303
5468
  gap: ${tokens.spacing.sm};
@@ -5309,13 +5474,13 @@ var ResponseContainer = styled48.div`
5309
5474
  max-width: fit-content;
5310
5475
  margin: 0 auto;
5311
5476
  `;
5312
- var LoadingDots3 = styled48.div`
5477
+ var LoadingDots3 = styled50.div`
5313
5478
  display: flex;
5314
5479
  align-items: center;
5315
5480
  gap: ${tokens.spacing.xs};
5316
5481
  padding: 0 ${tokens.spacing.xs};
5317
5482
  `;
5318
- var Dot2 = styled48.span`
5483
+ var Dot2 = styled50.span`
5319
5484
  width: ${tokens.spacing.xs};
5320
5485
  height: ${tokens.spacing.xs};
5321
5486
  border-radius: ${tokens.borderRadius.full};
@@ -5323,7 +5488,7 @@ var Dot2 = styled48.span`
5323
5488
  animation: ${dotPulse2} 1.4s ease-in-out infinite;
5324
5489
  animation-delay: ${(props) => props.delay}s;
5325
5490
  `;
5326
- var TypingIndicator = styled48.div`
5491
+ var TypingIndicator = styled50.div`
5327
5492
  display: flex;
5328
5493
  align-items: center;
5329
5494
  gap: ${tokens.spacing.xs};
@@ -5336,14 +5501,14 @@ var TypingIndicator = styled48.div`
5336
5501
  animation: ${dotPulse2} 1.4s ease-in-out infinite;
5337
5502
  }
5338
5503
  `;
5339
- var Message2 = styled48.span`
5504
+ var Message2 = styled50.span`
5340
5505
  font-size: ${tokens.typography.fontSize.sm};
5341
5506
  color: ${tokens.colors.text.primary};
5342
5507
  font-weight: ${tokens.typography.fontWeight.regular};
5343
5508
  line-height: ${tokens.typography.lineHeight.normal};
5344
5509
  white-space: nowrap;
5345
5510
  `;
5346
- var StreamingText2 = styled48.div`
5511
+ var StreamingText2 = styled50.div`
5347
5512
  font-size: ${tokens.typography.fontSize.sm};
5348
5513
  line-height: ${tokens.typography.lineHeight.normal};
5349
5514
  color: ${tokens.colors.text.primary};
@@ -5415,7 +5580,7 @@ var shake = keyframes`
5415
5580
  transform: translateX(5px);
5416
5581
  }
5417
5582
  `;
5418
- var AgentStateContainer = styled48.div`
5583
+ var AgentStateContainer = styled50.div`
5419
5584
  display: inline-flex;
5420
5585
  flex-direction: column;
5421
5586
  align-items: center;
@@ -5429,35 +5594,35 @@ var AgentStateContainer = styled48.div`
5429
5594
  max-width: fit-content;
5430
5595
  margin: 0 auto;
5431
5596
  `;
5432
- var StateContent = styled48.div`
5597
+ var StateContent = styled50.div`
5433
5598
  display: flex;
5434
5599
  flex-direction: column;
5435
5600
  gap: ${tokens.spacing.sm};
5436
5601
  align-items: center;
5437
5602
  width: 100%;
5438
5603
  `;
5439
- var IdleIndicator = styled48.div`
5604
+ var IdleIndicator = styled50.div`
5440
5605
  width: ${tokens.spacing.xs};
5441
5606
  height: ${tokens.spacing.xs};
5442
5607
  background-color: ${tokens.colors.status.idle};
5443
5608
  border-radius: ${tokens.borderRadius.full};
5444
5609
  animation: ${dotPulse3} 2s infinite ease-in-out;
5445
5610
  `;
5446
- var ErrorIndicator = styled48.div`
5611
+ var ErrorIndicator = styled50.div`
5447
5612
  width: ${tokens.spacing.xs};
5448
5613
  height: ${tokens.spacing.xs};
5449
5614
  background-color: ${tokens.colors.error};
5450
5615
  border-radius: ${tokens.borderRadius.full};
5451
5616
  animation: ${shake} 0.5s ease-in-out;
5452
5617
  `;
5453
- var StateLabel = styled48.span`
5618
+ var StateLabel = styled50.span`
5454
5619
  font-size: ${tokens.typography.fontSize.sm};
5455
5620
  font-weight: ${tokens.typography.fontWeight.regular};
5456
5621
  color: ${tokens.colors.text.primary};
5457
5622
  line-height: ${tokens.typography.lineHeight.normal};
5458
5623
  white-space: nowrap;
5459
5624
  `;
5460
- styled48.p`
5625
+ styled50.p`
5461
5626
  font-size: ${tokens.typography.fontSize.sm};
5462
5627
  color: ${tokens.colors.text.tertiary};
5463
5628
  line-height: ${tokens.typography.lineHeight.normal};
@@ -5465,7 +5630,7 @@ styled48.p`
5465
5630
  text-align: center;
5466
5631
  white-space: nowrap;
5467
5632
  `;
5468
- var ProgressBar = styled48.div`
5633
+ var ProgressBar = styled50.div`
5469
5634
  width: 100%;
5470
5635
  height: ${tokens.spacing.xs};
5471
5636
  background-color: ${tokens.colors.surface.elevated};
@@ -5473,7 +5638,7 @@ var ProgressBar = styled48.div`
5473
5638
  overflow: hidden;
5474
5639
  margin-top: ${tokens.spacing.xs};
5475
5640
  `;
5476
- var ProgressBarFill = styled48.div`
5641
+ var ProgressBarFill = styled50.div`
5477
5642
  height: 100%;
5478
5643
  width: ${(props) => Math.min(Math.max(props.progress, 0), 100)}%;
5479
5644
  background: linear-gradient(135deg, ${tokens.colors.accent} 0%, ${tokens.colors.primary} 100%);
@@ -5502,7 +5667,7 @@ var AgentState = ({ state, message, progress, className }) => {
5502
5667
  }
5503
5668
  return null;
5504
5669
  };
5505
- var FooterContainer = styled48.footer`
5670
+ var FooterContainer = styled50.footer`
5506
5671
  display: flex;
5507
5672
  align-items: center;
5508
5673
  justify-content: center;
@@ -5511,7 +5676,7 @@ var FooterContainer = styled48.footer`
5511
5676
  border-top: 1px solid ${tokens.colors.border.default};
5512
5677
  min-height: 44px;
5513
5678
  `;
5514
- var FooterContent = styled48.div`
5679
+ var FooterContent = styled50.div`
5515
5680
  display: flex;
5516
5681
  align-items: center;
5517
5682
  justify-content: space-between;
@@ -5524,13 +5689,13 @@ var FooterContent = styled48.div`
5524
5689
  font-family: ${tokens.typography.fontFamily.primary};
5525
5690
  line-height: ${tokens.typography.lineHeight.tight};
5526
5691
  `;
5527
- var FooterBranding = styled48.div`
5692
+ var FooterBranding = styled50.div`
5528
5693
  display: flex;
5529
5694
  align-items: center;
5530
5695
  gap: ${tokens.spacing.xs};
5531
5696
  flex-shrink: 0;
5532
5697
  `;
5533
- var FooterStatus = styled48.div`
5698
+ var FooterStatus = styled50.div`
5534
5699
  display: flex;
5535
5700
  align-items: center;
5536
5701
  gap: ${tokens.spacing.xs};
@@ -5540,7 +5705,7 @@ var FooterStatus = styled48.div`
5540
5705
  font-size: ${tokens.typography.fontSize.xs};
5541
5706
  opacity: 0.8;
5542
5707
  `;
5543
- var FooterLink = styled48.a`
5708
+ var FooterLink = styled50.a`
5544
5709
  color: ${tokens.colors.primary};
5545
5710
  text-decoration: none;
5546
5711
  transition: opacity ${tokens.transitions.fast};
@@ -5598,7 +5763,7 @@ var pulse3 = keyframes`
5598
5763
  transform: scale(1.1);
5599
5764
  }
5600
5765
  `;
5601
- var Container12 = styled48.div`
5766
+ var Container12 = styled50.div`
5602
5767
  display: inline-flex;
5603
5768
  align-items: center;
5604
5769
  gap: ${(props) => {
@@ -5614,7 +5779,7 @@ var Container12 = styled48.div`
5614
5779
  }};
5615
5780
  font-family: ${tokens.typography.fontFamily.primary};
5616
5781
  `;
5617
- var StatusDot = styled48.div`
5782
+ var StatusDot = styled50.div`
5618
5783
  width: ${(props) => {
5619
5784
  if (props.variant === "badge") {
5620
5785
  switch (props.size) {
@@ -5675,7 +5840,7 @@ var StatusDot = styled48.div`
5675
5840
  animation: ${(props) => props.status === "streaming" ? pulse3 : "none"} 2s ease-in-out infinite;
5676
5841
  flex-shrink: 0;
5677
5842
  `;
5678
- var Label = styled48.span`
5843
+ var Label = styled50.span`
5679
5844
  font-size: ${(props) => {
5680
5845
  if (props.variant === "badge") {
5681
5846
  switch (props.size) {
@@ -5702,7 +5867,7 @@ var Label = styled48.span`
5702
5867
  color: ${tokens.colors.text.secondary};
5703
5868
  line-height: ${tokens.typography.lineHeight.tight};
5704
5869
  `;
5705
- var BadgeContainer = styled48.div`
5870
+ var BadgeContainer = styled50.div`
5706
5871
  display: inline-flex;
5707
5872
  align-items: center;
5708
5873
  gap: ${(props) => {
@@ -5779,7 +5944,7 @@ var StreamStatusIndicator = ({
5779
5944
  return /* @__PURE__ */ jsx(Container12, { size, className, role: "status", "aria-label": getStatusLabel(status), children: content });
5780
5945
  };
5781
5946
  StreamStatusIndicator.displayName = "StreamStatusIndicator";
5782
- var HeaderContainer = styled48.header`
5947
+ var HeaderContainer = styled50.header`
5783
5948
  display: flex;
5784
5949
  align-items: center;
5785
5950
  justify-content: space-between;
@@ -5795,14 +5960,14 @@ var HeaderContainer = styled48.header`
5795
5960
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
5796
5961
  }
5797
5962
  `;
5798
- var HeaderContent = styled48.div`
5963
+ var HeaderContent = styled50.div`
5799
5964
  display: flex;
5800
5965
  flex-direction: column;
5801
5966
  gap: ${tokens.spacing.xs};
5802
5967
  flex: 1;
5803
5968
  min-width: 0;
5804
5969
  `;
5805
- var HeaderTitle = styled48.h1`
5970
+ var HeaderTitle = styled50.h1`
5806
5971
  margin: 0;
5807
5972
  font-size: ${tokens.typography.fontSize.base};
5808
5973
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -5813,7 +5978,7 @@ var HeaderTitle = styled48.h1`
5813
5978
  text-overflow: ellipsis;
5814
5979
  white-space: nowrap;
5815
5980
  `;
5816
- var HeaderSubtitle = styled48.p`
5981
+ var HeaderSubtitle = styled50.p`
5817
5982
  margin: 0;
5818
5983
  font-size: ${tokens.typography.fontSize.sm};
5819
5984
  color: ${tokens.colors.text.secondary};
@@ -5823,13 +5988,13 @@ var HeaderSubtitle = styled48.p`
5823
5988
  text-overflow: ellipsis;
5824
5989
  white-space: nowrap;
5825
5990
  `;
5826
- var HeaderActions = styled48.div`
5991
+ var HeaderActions = styled50.div`
5827
5992
  display: flex;
5828
5993
  align-items: center;
5829
5994
  gap: ${tokens.spacing.xs};
5830
5995
  margin-left: ${tokens.spacing.md};
5831
5996
  `;
5832
- var ActionButton3 = styled48.button`
5997
+ var ActionButton3 = styled50.button`
5833
5998
  display: inline-flex;
5834
5999
  align-items: center;
5835
6000
  justify-content: center;
@@ -5946,13 +6111,13 @@ var Header = ({
5946
6111
  ] });
5947
6112
  };
5948
6113
  Header.displayName = "Header";
5949
- var InputContainer = styled48.div`
6114
+ var InputContainer = styled50.div`
5950
6115
  display: flex;
5951
6116
  flex-direction: column;
5952
6117
  width: 100%;
5953
6118
  position: relative;
5954
6119
  `;
5955
- var InputWrapper2 = styled48.div`
6120
+ var InputWrapper2 = styled50.div`
5956
6121
  display: flex;
5957
6122
  align-items: flex-end;
5958
6123
  gap: ${tokens.spacing.sm};
@@ -5972,7 +6137,7 @@ var InputWrapper2 = styled48.div`
5972
6137
  border-color: ${tokens.colors.border.subtle};
5973
6138
  }
5974
6139
  `;
5975
- var TextArea = styled48.textarea`
6140
+ var TextArea = styled50.textarea`
5976
6141
  flex: 1;
5977
6142
  min-height: ${tokens.spacing.lg};
5978
6143
  max-height: ${(props) => `${(props.$maxRows || 5) * 24}px`};
@@ -6018,7 +6183,7 @@ var TextArea = styled48.textarea`
6018
6183
  background: ${tokens.colors.scrollbar.thumbHover};
6019
6184
  }
6020
6185
  `;
6021
- var SendButton = styled48.button`
6186
+ var SendButton = styled50.button`
6022
6187
  display: flex;
6023
6188
  align-items: center;
6024
6189
  justify-content: center;
@@ -6148,7 +6313,7 @@ var Input2 = ({
6148
6313
  )
6149
6314
  ] }) });
6150
6315
  };
6151
- var MessagesContainer = styled48.div`
6316
+ var MessagesContainer = styled50.div`
6152
6317
  display: flex;
6153
6318
  flex-direction: column;
6154
6319
  flex: 1;
@@ -6177,7 +6342,7 @@ var Messages = ({
6177
6342
  return /* @__PURE__ */ jsx(MessagesContainer, { className, role: "region", "aria-label": ariaLabel, children });
6178
6343
  };
6179
6344
  Messages.displayName = "Messages";
6180
- var MessagesListContainer = styled48.div`
6345
+ var MessagesListContainer = styled50.div`
6181
6346
  display: flex;
6182
6347
  flex-direction: column;
6183
6348
  width: 100%;
@@ -6217,7 +6382,7 @@ var MessagesListContainer = styled48.div`
6217
6382
  /* Ensure proper rendering on mobile */
6218
6383
  -webkit-overflow-scrolling: touch;
6219
6384
  `;
6220
- var MessagesListContent = styled48.div`
6385
+ var MessagesListContent = styled50.div`
6221
6386
  display: flex;
6222
6387
  flex-direction: column;
6223
6388
  gap: ${tokens.spacing.sm};
@@ -6333,7 +6498,7 @@ var MessagesList = ({
6333
6498
  }
6334
6499
  );
6335
6500
  };
6336
- var StyledUserMessage2 = styled48.div`
6501
+ var StyledUserMessage2 = styled50.div`
6337
6502
  display: flex;
6338
6503
  justify-content: flex-end;
6339
6504
  align-items: flex-start;
@@ -6341,7 +6506,7 @@ var StyledUserMessage2 = styled48.div`
6341
6506
  padding: 0;
6342
6507
  width: 100%;
6343
6508
  `;
6344
- var MessageBubble = styled48.div`
6509
+ var MessageBubble = styled50.div`
6345
6510
  display: flex;
6346
6511
  flex-direction: column;
6347
6512
  max-width: 85%;
@@ -6368,7 +6533,7 @@ var MessageBubble = styled48.div`
6368
6533
  opacity: 0.9;
6369
6534
  }
6370
6535
  `;
6371
- var MessageContent2 = styled48.p`
6536
+ var MessageContent2 = styled50.p`
6372
6537
  margin: 0;
6373
6538
  font-size: ${tokens.typography.fontSize.sm};
6374
6539
  line-height: ${tokens.typography.lineHeight.normal};
@@ -6377,13 +6542,13 @@ var MessageContent2 = styled48.p`
6377
6542
  word-break: break-word;
6378
6543
  white-space: pre-wrap;
6379
6544
  `;
6380
- var MessageTime2 = styled48.time`
6545
+ var MessageTime2 = styled50.time`
6381
6546
  font-size: ${tokens.typography.fontSize.xs};
6382
6547
  opacity: 0.7;
6383
6548
  margin-top: ${tokens.spacing.xs};
6384
6549
  text-align: right;
6385
6550
  `;
6386
- var ActionButton4 = styled48.button`
6551
+ var ActionButton4 = styled50.button`
6387
6552
  display: inline-flex;
6388
6553
  align-items: center;
6389
6554
  gap: ${tokens.spacing.xs};
@@ -6407,12 +6572,12 @@ var ActionButton4 = styled48.button`
6407
6572
  transform: scale(0.98);
6408
6573
  }
6409
6574
  `;
6410
- var ActionsContainer3 = styled48.div`
6575
+ var ActionsContainer3 = styled50.div`
6411
6576
  display: flex;
6412
6577
  gap: ${tokens.spacing.xs};
6413
6578
  flex-wrap: wrap;
6414
6579
  `;
6415
- var Avatar3 = styled48.img`
6580
+ var Avatar3 = styled50.img`
6416
6581
  width: ${tokens.spacing.xl};
6417
6582
  height: ${tokens.spacing.xl};
6418
6583
  border-radius: ${tokens.borderRadius.full};
@@ -6451,7 +6616,7 @@ var UserMessage2 = ({
6451
6616
  avatarUrl && /* @__PURE__ */ jsx(Avatar3, { src: avatarUrl, alt: username || "User" })
6452
6617
  ] });
6453
6618
  };
6454
- var ErrorContainer = styled48.div`
6619
+ var ErrorContainer = styled50.div`
6455
6620
  display: flex;
6456
6621
  align-items: flex-start;
6457
6622
  gap: ${tokens.spacing.sm};
@@ -6465,7 +6630,7 @@ var ErrorContainer = styled48.div`
6465
6630
  width: ${(props) => props.variant === "banner" ? "100%" : "auto"};
6466
6631
  max-width: ${(props) => props.variant === "banner" ? "100%" : "600px"};
6467
6632
  `;
6468
- var IconContainer = styled48.div`
6633
+ var IconContainer = styled50.div`
6469
6634
  flex-shrink: 0;
6470
6635
  width: 20px;
6471
6636
  height: 20px;
@@ -6482,29 +6647,29 @@ var ErrorIcon = () => /* @__PURE__ */ jsx(
6482
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" })
6483
6648
  }
6484
6649
  );
6485
- var Content2 = styled48.div`
6650
+ var Content2 = styled50.div`
6486
6651
  flex: 1;
6487
6652
  display: flex;
6488
6653
  flex-direction: column;
6489
6654
  gap: ${tokens.spacing.sm};
6490
6655
  `;
6491
- var ErrorMessage = styled48.div`
6656
+ var ErrorMessage = styled50.div`
6492
6657
  font-size: ${tokens.typography.fontSize.sm};
6493
6658
  line-height: ${tokens.typography.lineHeight.normal};
6494
6659
  color: ${tokens.colors.text.primary};
6495
6660
  `;
6496
- var ErrorDetails = styled48.div`
6661
+ var ErrorDetails = styled50.div`
6497
6662
  font-size: ${tokens.typography.fontSize.xs};
6498
6663
  line-height: 1.4;
6499
6664
  color: ${tokens.colors.text.secondary};
6500
6665
  margin-top: ${tokens.spacing.xs};
6501
6666
  `;
6502
- var Actions2 = styled48.div`
6667
+ var Actions2 = styled50.div`
6503
6668
  display: flex;
6504
6669
  gap: ${tokens.spacing.sm};
6505
6670
  margin-top: ${tokens.spacing.sm};
6506
6671
  `;
6507
- var Button3 = styled48.button`
6672
+ var Button3 = styled50.button`
6508
6673
  display: inline-flex;
6509
6674
  align-items: center;
6510
6675
  gap: ${tokens.spacing.xs};
@@ -6533,7 +6698,7 @@ var Button3 = styled48.button`
6533
6698
  cursor: not-allowed;
6534
6699
  }
6535
6700
  `;
6536
- var CloseButton = styled48.button`
6701
+ var CloseButton = styled50.button`
6537
6702
  flex-shrink: 0;
6538
6703
  width: 24px;
6539
6704
  height: 24px;
@@ -6592,7 +6757,7 @@ var StreamErrorMessage = ({
6592
6757
  ] });
6593
6758
  };
6594
6759
  StreamErrorMessage.displayName = "StreamErrorMessage";
6595
- var SuggestionsContainer = styled48.div`
6760
+ var SuggestionsContainer = styled50.div`
6596
6761
  display: flex;
6597
6762
  flex-wrap: nowrap; /* Single row */
6598
6763
  gap: ${tokens.spacing.sm};
@@ -6625,7 +6790,7 @@ var SuggestionsContainer = styled48.div`
6625
6790
  display: none; /* Chrome/Safari/Opera */
6626
6791
  }
6627
6792
  `;
6628
- var StyledSuggestion = styled48.button`
6793
+ var StyledSuggestion = styled50.button`
6629
6794
  /* Base styles */
6630
6795
  display: inline-flex;
6631
6796
  align-items: center;
@@ -6698,7 +6863,7 @@ function SuggestionChip({ suggestion, onSelect }) {
6698
6863
  return /* @__PURE__ */ jsx(StyledSuggestion, { ...buttonProps, ref, $isPressed: isPressed, role: "listitem", children: suggestion });
6699
6864
  }
6700
6865
  Suggestions.displayName = "Suggestions";
6701
- var WindowContainer = styled48.div`
6866
+ var WindowContainer = styled50.div`
6702
6867
  display: flex;
6703
6868
  flex-direction: column;
6704
6869
  /* Glassmorphism effect */
@@ -6877,7 +7042,7 @@ function FacebookIcon({
6877
7042
  ) });
6878
7043
  }
6879
7044
  FacebookIcon.displayName = "FacebookIcon";
6880
- var StyledIconWrapper = styled48.button`
7045
+ var StyledIconWrapper = styled50.button`
6881
7046
  display: inline-flex;
6882
7047
  align-items: center;
6883
7048
  justify-content: center;
@@ -7147,7 +7312,7 @@ function InstagramIcon({
7147
7312
  ] });
7148
7313
  }
7149
7314
  InstagramIcon.displayName = "InstagramIcon";
7150
- var StyledIconWrapper2 = styled48.button`
7315
+ var StyledIconWrapper2 = styled50.button`
7151
7316
  display: inline-flex;
7152
7317
  align-items: center;
7153
7318
  justify-content: center;
@@ -7283,7 +7448,7 @@ function LinkedInIcon({
7283
7448
  return /* @__PURE__ */ jsx("span", { className, style: { display: "inline-flex", width: size, height: size }, children: svgElement });
7284
7449
  }
7285
7450
  LinkedInIcon.displayName = "LinkedInIcon";
7286
- var StyledIconWrapper3 = styled48.button`
7451
+ var StyledIconWrapper3 = styled50.button`
7287
7452
  display: inline-flex;
7288
7453
  align-items: center;
7289
7454
  justify-content: center;
@@ -7920,7 +8085,7 @@ function WhatsAppIcon({
7920
8085
  );
7921
8086
  }
7922
8087
  WhatsAppIcon.displayName = "WhatsAppIcon";
7923
- var StyledXIcon = styled48.svg`
8088
+ var StyledXIcon = styled50.svg`
7924
8089
  display: inline-block;
7925
8090
  vertical-align: middle;
7926
8091
  flex-shrink: 0;
@@ -8336,7 +8501,7 @@ var PostApprovalControls = ({
8336
8501
  ] });
8337
8502
  };
8338
8503
  PostApprovalControls.displayName = "PostApprovalControls";
8339
- var Container13 = styled48.div`
8504
+ var Container13 = styled50.div`
8340
8505
  display: grid;
8341
8506
  gap: 0;
8342
8507
  background: ${tokens.colors.background.dark};
@@ -8346,7 +8511,7 @@ var Container13 = styled48.div`
8346
8511
  font-family: ${tokens.typography.fontFamily.primary};
8347
8512
  transition: border-color ${tokens.transitions.fast};
8348
8513
  `;
8349
- var Header2 = styled48.div`
8514
+ var Header2 = styled50.div`
8350
8515
  display: grid;
8351
8516
  grid-template-columns: auto 1fr auto;
8352
8517
  align-items: center;
@@ -8360,7 +8525,7 @@ var Header2 = styled48.div`
8360
8525
  background: ${tokens.colors.background.light};
8361
8526
  }
8362
8527
  `;
8363
- var StatusBadge = styled48.span`
8528
+ var StatusBadge = styled50.span`
8364
8529
  padding: ${tokens.spacing.xs} ${tokens.spacing.sm};
8365
8530
  border-radius: ${tokens.borderRadius.sm};
8366
8531
  font-size: ${tokens.typography.fontSize.xs};
@@ -8371,23 +8536,23 @@ var StatusBadge = styled48.span`
8371
8536
  color: ${({ $color }) => $color};
8372
8537
  white-space: nowrap;
8373
8538
  `;
8374
- var MetaInfo = styled48.div`
8539
+ var MetaInfo = styled50.div`
8375
8540
  display: flex;
8376
8541
  align-items: center;
8377
8542
  gap: ${tokens.spacing.sm};
8378
8543
  min-width: 0;
8379
8544
  `;
8380
- var PostId = styled48.span`
8545
+ var PostId = styled50.span`
8381
8546
  font-size: ${tokens.typography.fontSize.xs};
8382
8547
  color: ${tokens.colors.text.tertiary};
8383
8548
  font-family: ${tokens.typography.fontFamily.monospace};
8384
8549
  `;
8385
- var ErrorText = styled48.span`
8550
+ var ErrorText = styled50.span`
8386
8551
  font-size: ${tokens.typography.fontSize.xs};
8387
8552
  color: ${tokens.colors.error};
8388
8553
  line-height: ${tokens.typography.lineHeight.tight};
8389
8554
  `;
8390
- var CollapseIcon = styled48.span`
8555
+ var CollapseIcon = styled50.span`
8391
8556
  font-size: ${tokens.typography.fontSize.sm};
8392
8557
  color: ${tokens.colors.text.tertiary};
8393
8558
  font-weight: ${tokens.typography.fontWeight.medium};
@@ -8397,17 +8562,17 @@ var CollapseIcon = styled48.span`
8397
8562
  align-items: center;
8398
8563
  justify-content: center;
8399
8564
  `;
8400
- var Content3 = styled48.div`
8565
+ var Content3 = styled50.div`
8401
8566
  display: grid;
8402
8567
  gap: ${tokens.spacing.md};
8403
8568
  padding: ${tokens.spacing.md};
8404
8569
  border-top: 1px solid ${tokens.colors.border.default};
8405
8570
  `;
8406
- var EditSection = styled48.div`
8571
+ var EditSection = styled50.div`
8407
8572
  display: grid;
8408
8573
  gap: ${tokens.spacing.xs};
8409
8574
  `;
8410
- var EditLabel = styled48.label`
8575
+ var EditLabel = styled50.label`
8411
8576
  display: grid;
8412
8577
  grid-template-columns: 1fr auto;
8413
8578
  align-items: center;
@@ -8416,7 +8581,7 @@ var EditLabel = styled48.label`
8416
8581
  color: ${tokens.colors.text.secondary};
8417
8582
  line-height: ${tokens.typography.lineHeight.tight};
8418
8583
  `;
8419
- var CharCount = styled48.span`
8584
+ var CharCount = styled50.span`
8420
8585
  font-size: ${tokens.typography.fontSize.xs};
8421
8586
  font-weight: ${tokens.typography.fontWeight.semibold};
8422
8587
  font-family: ${tokens.typography.fontFamily.monospace};
@@ -8426,7 +8591,7 @@ var CharCount = styled48.span`
8426
8591
  return tokens.colors.success;
8427
8592
  }};
8428
8593
  `;
8429
- var EditTextarea = styled48.textarea`
8594
+ var EditTextarea = styled50.textarea`
8430
8595
  width: 100%;
8431
8596
  min-height: 100px;
8432
8597
  padding: ${tokens.spacing.sm};
@@ -8456,14 +8621,14 @@ var EditTextarea = styled48.textarea`
8456
8621
  color: ${tokens.colors.text.tertiary};
8457
8622
  }
8458
8623
  `;
8459
- var ProgressBar2 = styled48.div`
8624
+ var ProgressBar2 = styled50.div`
8460
8625
  width: 100%;
8461
8626
  height: 3px;
8462
8627
  background: ${tokens.colors.border.default};
8463
8628
  border-radius: ${tokens.borderRadius.sm};
8464
8629
  overflow: hidden;
8465
8630
  `;
8466
- var ProgressFill = styled48.div`
8631
+ var ProgressFill = styled50.div`
8467
8632
  width: ${({ $percentage }) => $percentage}%;
8468
8633
  height: 100%;
8469
8634
  border-radius: ${tokens.borderRadius.sm};
@@ -8474,12 +8639,12 @@ var ProgressFill = styled48.div`
8474
8639
  return tokens.colors.success;
8475
8640
  }};
8476
8641
  `;
8477
- var Actions3 = styled48.div`
8642
+ var Actions3 = styled50.div`
8478
8643
  display: flex;
8479
8644
  gap: ${tokens.spacing.sm};
8480
8645
  justify-content: flex-end;
8481
8646
  `;
8482
- var ActionButton5 = styled48.button`
8647
+ var ActionButton5 = styled50.button`
8483
8648
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
8484
8649
  border-radius: ${tokens.borderRadius.md};
8485
8650
  font-size: ${tokens.typography.fontSize.sm};
@@ -8713,7 +8878,7 @@ var fadeIn2 = keyframes`
8713
8878
  transform: translateY(0);
8714
8879
  }
8715
8880
  `;
8716
- var CardContainer = styled48.div`
8881
+ var CardContainer = styled50.div`
8717
8882
  background: ${tokens.colors.background.dark};
8718
8883
  border-radius: ${tokens.borderRadius.xl};
8719
8884
  padding: ${tokens.spacing.md};
@@ -8726,7 +8891,7 @@ var CardContainer = styled48.div`
8726
8891
  border-color: ${({ $platformColor }) => `${$platformColor}80`};
8727
8892
  }
8728
8893
  `;
8729
- var PlatformHeader = styled48.div`
8894
+ var PlatformHeader = styled50.div`
8730
8895
  display: flex;
8731
8896
  align-items: center;
8732
8897
  gap: 10px;
@@ -8734,7 +8899,7 @@ var PlatformHeader = styled48.div`
8734
8899
  padding-bottom: ${tokens.spacing.sm};
8735
8900
  border-bottom: 1px solid ${tokens.colors.border.default};
8736
8901
  `;
8737
- var PlatformIcon = styled48.span`
8902
+ var PlatformIcon = styled50.span`
8738
8903
  display: flex;
8739
8904
  align-items: center;
8740
8905
  justify-content: center;
@@ -8746,13 +8911,13 @@ var PlatformIcon = styled48.span`
8746
8911
  font-size: ${tokens.typography.fontSize.base};
8747
8912
  font-weight: ${tokens.typography.fontWeight.semibold};
8748
8913
  `;
8749
- var PlatformName = styled48.span`
8914
+ var PlatformName = styled50.span`
8750
8915
  flex: 1;
8751
8916
  font-size: ${tokens.typography.fontSize.sm};
8752
8917
  font-weight: ${tokens.typography.fontWeight.semibold};
8753
8918
  color: ${tokens.colors.text.primary};
8754
8919
  `;
8755
- var CharacterBadge = styled48.span`
8920
+ var CharacterBadge = styled50.span`
8756
8921
  padding: ${tokens.spacing.xs} ${tokens.spacing.sm};
8757
8922
  border-radius: ${tokens.borderRadius.lg};
8758
8923
  font-size: 11px;
@@ -8764,10 +8929,10 @@ var CharacterBadge = styled48.span`
8764
8929
  return tokens.colors.success;
8765
8930
  }};
8766
8931
  `;
8767
- var ContentSection = styled48.div`
8932
+ var ContentSection = styled50.div`
8768
8933
  margin-bottom: ${tokens.spacing.sm};
8769
8934
  `;
8770
- var PostContent = styled48.div`
8935
+ var PostContent = styled50.div`
8771
8936
  font-size: ${tokens.typography.fontSize.base};
8772
8937
  font-family: ${tokens.typography.fontFamily.primary};
8773
8938
  line-height: 1.6;
@@ -8779,7 +8944,7 @@ var PostContent = styled48.div`
8779
8944
  /* Smooth fade-in animation when content appears */
8780
8945
  animation: ${fadeIn2} 0.4s ease-out;
8781
8946
  `;
8782
- var PostContentEditable = styled48.textarea`
8947
+ var PostContentEditable = styled50.textarea`
8783
8948
  width: 100%;
8784
8949
  min-height: 180px;
8785
8950
  max-height: 300px;
@@ -8808,12 +8973,12 @@ var PostContentEditable = styled48.textarea`
8808
8973
  color: ${tokens.colors.text.tertiary};
8809
8974
  }
8810
8975
  `;
8811
- var HashtagsContainer = styled48.div`
8976
+ var HashtagsContainer = styled50.div`
8812
8977
  display: flex;
8813
8978
  flex-wrap: wrap;
8814
8979
  gap: 6px;
8815
8980
  `;
8816
- var HashtagPill = styled48.span`
8981
+ var HashtagPill = styled50.span`
8817
8982
  display: inline-block;
8818
8983
  padding: ${tokens.spacing.xs} 10px;
8819
8984
  border-radius: ${tokens.borderRadius.full};
@@ -8830,17 +8995,17 @@ var HashtagPill = styled48.span`
8830
8995
  color: ${tokens.colors.primary};
8831
8996
  }
8832
8997
  `;
8833
- var ProgressBarContainer = styled48.div`
8998
+ var ProgressBarContainer = styled50.div`
8834
8999
  margin-top: ${tokens.spacing.sm};
8835
9000
  `;
8836
- var ProgressBarTrack = styled48.div`
9001
+ var ProgressBarTrack = styled50.div`
8837
9002
  width: 100%;
8838
9003
  height: 4px;
8839
9004
  background: ${tokens.colors.border.default};
8840
9005
  border-radius: ${tokens.borderRadius.sm};
8841
9006
  overflow: hidden;
8842
9007
  `;
8843
- var ProgressBarFill2 = styled48.div`
9008
+ var ProgressBarFill2 = styled50.div`
8844
9009
  width: ${({ $percentage }) => $percentage}%;
8845
9010
  height: 100%;
8846
9011
  border-radius: ${tokens.borderRadius.sm};
@@ -8851,7 +9016,7 @@ var ProgressBarFill2 = styled48.div`
8851
9016
  return tokens.colors.success;
8852
9017
  }};
8853
9018
  `;
8854
- var ImageChangeButton = styled48.button`
9019
+ var ImageChangeButton = styled50.button`
8855
9020
  display: block;
8856
9021
  width: 100%;
8857
9022
  padding: 0;
@@ -8860,21 +9025,21 @@ var ImageChangeButton = styled48.button`
8860
9025
  cursor: pointer;
8861
9026
  -webkit-tap-highlight-color: transparent;
8862
9027
  `;
8863
- var ImagePreviewContainer = styled48.div`
9028
+ var ImagePreviewContainer = styled50.div`
8864
9029
  position: relative;
8865
9030
  margin-bottom: ${tokens.spacing.sm};
8866
9031
  border-radius: ${tokens.borderRadius.sm};
8867
9032
  overflow: hidden;
8868
9033
  border: 1px solid ${tokens.colors.border.default};
8869
9034
  `;
8870
- var ImagePreview = styled48.img`
9035
+ var ImagePreview = styled50.img`
8871
9036
  width: 100%;
8872
9037
  height: auto;
8873
9038
  max-height: 200px;
8874
9039
  object-fit: cover;
8875
9040
  display: block;
8876
9041
  `;
8877
- var ImageOverlay = styled48.div`
9042
+ var ImageOverlay = styled50.div`
8878
9043
  position: absolute;
8879
9044
  inset: 0;
8880
9045
  background: rgba(0, 0, 0, 0.5);
@@ -8893,12 +9058,12 @@ var ImageOverlay = styled48.div`
8893
9058
  opacity: 0.6;
8894
9059
  }
8895
9060
  `;
8896
- var OverlayText = styled48.span`
9061
+ var OverlayText = styled50.span`
8897
9062
  color: white;
8898
9063
  font-size: ${tokens.typography.fontSize.sm};
8899
9064
  font-weight: ${tokens.typography.fontWeight.semibold};
8900
9065
  `;
8901
- var ImagePlaceholder = styled48.div`
9066
+ var ImagePlaceholder = styled50.div`
8902
9067
  width: 100%;
8903
9068
  height: 200px;
8904
9069
  background: linear-gradient(
@@ -8928,7 +9093,7 @@ var ImagePlaceholder = styled48.div`
8928
9093
  }
8929
9094
  `}
8930
9095
  `;
8931
- var PlaceholderIcon = styled48.div`
9096
+ var PlaceholderIcon = styled50.div`
8932
9097
  width: 48px;
8933
9098
  height: 48px;
8934
9099
  border: 2px solid white;
@@ -8950,13 +9115,13 @@ var shimmer = keyframes`
8950
9115
  background-position: 200% 0;
8951
9116
  }
8952
9117
  `;
8953
- var SkeletonContent = styled48.div`
9118
+ var SkeletonContent = styled50.div`
8954
9119
  display: flex;
8955
9120
  flex-direction: column;
8956
9121
  gap: ${tokens.spacing.sm};
8957
9122
  padding: ${tokens.spacing.sm} 0;
8958
9123
  `;
8959
- var SkeletonLine = styled48.div`
9124
+ var SkeletonLine = styled50.div`
8960
9125
  height: 16px;
8961
9126
  width: ${({ $width }) => $width};
8962
9127
  background: linear-gradient(
@@ -9057,13 +9222,13 @@ var PlatformCarousel = ({
9057
9222
  ] });
9058
9223
  };
9059
9224
  PlatformCarousel.displayName = "PlatformCarousel";
9060
- var CarouselContainer = styled48.div`
9225
+ var CarouselContainer = styled50.div`
9061
9226
  display: flex;
9062
9227
  flex-direction: column;
9063
9228
  width: 100%;
9064
9229
  gap: ${tokens.spacing.md};
9065
9230
  `;
9066
- var TabsContainer = styled48.div`
9231
+ var TabsContainer = styled50.div`
9067
9232
  display: flex;
9068
9233
  gap: ${tokens.spacing.sm};
9069
9234
  padding: ${tokens.spacing.sm};
@@ -9077,7 +9242,7 @@ var TabsContainer = styled48.div`
9077
9242
  display: none;
9078
9243
  }
9079
9244
  `;
9080
- var PlatformTab = styled48.button`
9245
+ var PlatformTab = styled50.button`
9081
9246
  display: flex;
9082
9247
  align-items: center;
9083
9248
  gap: ${tokens.spacing.xs};
@@ -9103,37 +9268,36 @@ var PlatformTab = styled48.button`
9103
9268
  box-shadow: 0 0 0 2px ${({ $platformColor }) => $platformColor}40;
9104
9269
  }
9105
9270
  `;
9106
- var PlatformIcon2 = styled48.span`
9271
+ var PlatformIcon2 = styled50.span`
9107
9272
  font-size: ${tokens.typography.fontSize.base};
9108
9273
  color: ${({ $platformColor }) => $platformColor};
9109
9274
  transition: color ${tokens.transitions.fast};
9110
9275
  `;
9111
- var ContentContainer2 = styled48.div`
9276
+ var ContentContainer2 = styled50.div`
9112
9277
  position: relative;
9113
9278
  min-height: 200px;
9114
9279
  overflow: hidden;
9115
- /* Padding to prevent card borders/shadows from being clipped */
9116
- padding: 0 ${tokens.spacing.xs};
9117
- margin: 0 -${tokens.spacing.xs};
9118
9280
  `;
9119
- var Slide = styled48.div`
9281
+ var Slide = styled50.div`
9120
9282
  position: ${({ $isActive }) => $isActive ? "relative" : "absolute"};
9121
9283
  top: 0;
9122
9284
  left: 0;
9123
9285
  width: 100%;
9286
+ padding: 8px;
9287
+ box-sizing: border-box;
9124
9288
  opacity: ${({ $isActive }) => $isActive ? 1 : 0};
9125
9289
  transform: ${({ $isActive }) => $isActive ? "translateX(0)" : "translateX(20px)"};
9126
9290
  transition: opacity ${tokens.animation.duration.short} ${tokens.animation.easing.smooth},
9127
9291
  transform ${tokens.animation.duration.short} ${tokens.animation.easing.smooth};
9128
9292
  pointer-events: ${({ $isActive }) => $isActive ? "auto" : "none"};
9129
9293
  `;
9130
- var NavigationDotsContainer = styled48.div`
9294
+ var NavigationDotsContainer = styled50.div`
9131
9295
  display: flex;
9132
9296
  justify-content: center;
9133
9297
  gap: ${tokens.spacing.xs};
9134
9298
  padding: ${tokens.spacing.sm};
9135
9299
  `;
9136
- var NavigationDot = styled48.button`
9300
+ var NavigationDot = styled50.button`
9137
9301
  width: ${tokens.spacing.sm};
9138
9302
  height: ${tokens.spacing.sm};
9139
9303
  border-radius: ${tokens.borderRadius.full};
@@ -9153,7 +9317,7 @@ var NavigationDot = styled48.button`
9153
9317
  box-shadow: 0 0 0 2px ${({ $platformColor }) => $platformColor}40;
9154
9318
  }
9155
9319
  `;
9156
- var EmptyState = styled48.div`
9320
+ var EmptyState = styled50.div`
9157
9321
  display: flex;
9158
9322
  align-items: center;
9159
9323
  justify-content: center;
@@ -9212,10 +9376,12 @@ var PlatformGrid = ({
9212
9376
  }) });
9213
9377
  };
9214
9378
  PlatformGrid.displayName = "PlatformGrid";
9215
- var Grid = styled48.div`
9379
+ var Grid = styled50.div`
9216
9380
  display: grid;
9217
9381
  gap: ${tokens.spacing.md};
9218
9382
  width: 100%;
9383
+ padding: 8px;
9384
+ box-sizing: border-box;
9219
9385
 
9220
9386
  /* Mobile: 1 column */
9221
9387
  grid-template-columns: 1fr;
@@ -9230,7 +9396,7 @@ var Grid = styled48.div`
9230
9396
  grid-template-columns: repeat(3, 1fr);
9231
9397
  }
9232
9398
  `;
9233
- var GridCell = styled48.div`
9399
+ var GridCell = styled50.div`
9234
9400
  min-width: 0; /* Prevent grid blowout with long content */
9235
9401
  cursor: pointer;
9236
9402
  border-radius: ${tokens.borderRadius.lg};
@@ -9240,7 +9406,7 @@ var GridCell = styled48.div`
9240
9406
  transform: translateY(-2px);
9241
9407
  }
9242
9408
  `;
9243
- var EmptyState2 = styled48.div`
9409
+ var EmptyState2 = styled50.div`
9244
9410
  display: flex;
9245
9411
  align-items: center;
9246
9412
  justify-content: center;
@@ -9249,12 +9415,12 @@ var EmptyState2 = styled48.div`
9249
9415
  border: 1px dashed ${tokens.colors.border.hover};
9250
9416
  border-radius: ${tokens.borderRadius.lg};
9251
9417
  `;
9252
- var EmptyStateText = styled48.p`
9418
+ var EmptyStateText = styled50.p`
9253
9419
  margin: 0;
9254
9420
  font-size: ${tokens.typography.fontSize.sm};
9255
9421
  color: ${tokens.colors.text.tertiary};
9256
9422
  `;
9257
- var Container14 = styled48.div`
9423
+ var Container14 = styled50.div`
9258
9424
  display: flex;
9259
9425
  flex-direction: column;
9260
9426
  height: 100%;
@@ -9268,7 +9434,7 @@ var Container14 = styled48.div`
9268
9434
  );
9269
9435
  overflow: auto;
9270
9436
  `;
9271
- var Header3 = styled48.div`
9437
+ var Header3 = styled50.div`
9272
9438
  display: flex;
9273
9439
  justify-content: space-between;
9274
9440
  align-items: center;
@@ -9294,7 +9460,7 @@ var Header3 = styled48.div`
9294
9460
  pointer-events: none;
9295
9461
  }
9296
9462
  `;
9297
- var Title = styled48.h2`
9463
+ var Title = styled50.h2`
9298
9464
  margin: 0;
9299
9465
  font-size: ${tokens.typography.fontSize.base};
9300
9466
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -9304,12 +9470,12 @@ var Title = styled48.h2`
9304
9470
  text-overflow: ellipsis;
9305
9471
  min-width: 0;
9306
9472
  `;
9307
- var ViewToggle = styled48.div`
9473
+ var ViewToggle = styled50.div`
9308
9474
  display: flex;
9309
9475
  gap: ${tokens.spacing.xs};
9310
9476
  flex-shrink: 0;
9311
9477
  `;
9312
- var ToggleButton = styled48.button`
9478
+ var ToggleButton = styled50.button`
9313
9479
  padding: ${tokens.spacing.xs};
9314
9480
  width: 32px;
9315
9481
  height: 32px;
@@ -9337,7 +9503,7 @@ var ToggleButton = styled48.button`
9337
9503
  background: ${({ $active }) => $active ? `${tokens.colors.primary}4D` : tokens.colors.surface.overlayHover};
9338
9504
  }
9339
9505
  `;
9340
- var Content4 = styled48.div`
9506
+ var Content4 = styled50.div`
9341
9507
  flex: 1;
9342
9508
  display: flex;
9343
9509
  flex-direction: column;
@@ -9346,7 +9512,7 @@ var Content4 = styled48.div`
9346
9512
  /* Extra top padding to account for header fade overlay */
9347
9513
  padding-top: ${tokens.spacing.md};
9348
9514
  `;
9349
- var EmptyState3 = styled48.div`
9515
+ var EmptyState3 = styled50.div`
9350
9516
  display: flex;
9351
9517
  flex-direction: column;
9352
9518
  align-items: center;
@@ -9374,7 +9540,7 @@ var EmptyState3 = styled48.div`
9374
9540
  font-size: ${tokens.typography.fontSize.sm};
9375
9541
  }
9376
9542
  `;
9377
- var PostCount = styled48.span`
9543
+ var PostCount = styled50.span`
9378
9544
  font-size: ${tokens.typography.fontSize.sm};
9379
9545
  color: ${tokens.colors.text.tertiary};
9380
9546
  font-weight: ${tokens.typography.fontWeight.regular};
@@ -9793,13 +9959,13 @@ var shimmer2 = keyframes`
9793
9959
  0% { background-position: -200% 0; }
9794
9960
  100% { background-position: 200% 0; }
9795
9961
  `;
9796
- var Icon2 = styled48.img`
9962
+ var Icon2 = styled50.img`
9797
9963
  width: 14px;
9798
9964
  height: 14px;
9799
9965
  vertical-align: middle;
9800
9966
  opacity: 0.8;
9801
9967
  `;
9802
- var CardContainer2 = styled48.div`
9968
+ var CardContainer2 = styled50.div`
9803
9969
  background: ${tokens.colors.background.dark};
9804
9970
  border-radius: ${tokens.borderRadius.xl};
9805
9971
  padding: ${tokens.spacing.lg};
@@ -9817,7 +9983,7 @@ var CardContainer2 = styled48.div`
9817
9983
  padding: ${tokens.spacing.md};
9818
9984
  }
9819
9985
  `;
9820
- var CardHeader = styled48.div`
9986
+ var CardHeader = styled50.div`
9821
9987
  display: flex;
9822
9988
  justify-content: space-between;
9823
9989
  align-items: center;
@@ -9830,12 +9996,12 @@ var CardHeader = styled48.div`
9830
9996
  align-items: flex-start;
9831
9997
  }
9832
9998
  `;
9833
- var HeaderLeft = styled48.div`
9999
+ var HeaderLeft = styled50.div`
9834
10000
  display: flex;
9835
10001
  align-items: center;
9836
10002
  gap: ${tokens.spacing.sm};
9837
10003
  `;
9838
- var SubredditBadgeContainer = styled48.span`
10004
+ var SubredditBadgeContainer = styled50.span`
9839
10005
  display: inline-flex;
9840
10006
  align-items: center;
9841
10007
  gap: ${tokens.spacing.xs};
@@ -9848,14 +10014,14 @@ var SubredditBadgeContainer = styled48.span`
9848
10014
  border: 1px solid ${({ $color }) => `${$color}40`};
9849
10015
  transition: all ${tokens.transitions.fast};
9850
10016
  `;
9851
- var SubredditLink = styled48.a`
10017
+ var SubredditLink = styled50.a`
9852
10018
  text-decoration: none;
9853
10019
 
9854
10020
  &:hover ${SubredditBadgeContainer} {
9855
10021
  background: ${tokens.colors.surface.overlayHover};
9856
10022
  }
9857
10023
  `;
9858
- var ScoreBadgeContainer = styled48.div`
10024
+ var ScoreBadgeContainer = styled50.div`
9859
10025
  display: flex;
9860
10026
  align-items: baseline;
9861
10027
  gap: ${tokens.spacing.xs};
@@ -9864,42 +10030,42 @@ var ScoreBadgeContainer = styled48.div`
9864
10030
  background: ${({ $color }) => `${$color}20`};
9865
10031
  border: 1px solid ${({ $color }) => `${$color}40`};
9866
10032
  `;
9867
- var ScoreValue = styled48.span`
10033
+ var ScoreValue = styled50.span`
9868
10034
  font-size: ${tokens.typography.fontSize.lg};
9869
10035
  font-weight: ${tokens.typography.fontWeight.bold};
9870
10036
  color: ${tokens.colors.text.primary};
9871
10037
  `;
9872
- var ScoreMax = styled48.span`
10038
+ var ScoreMax = styled50.span`
9873
10039
  font-size: ${tokens.typography.fontSize.xs};
9874
10040
  color: ${tokens.colors.text.tertiary};
9875
10041
  `;
9876
- var ScoreLabel = styled48.span`
10042
+ var ScoreLabel = styled50.span`
9877
10043
  margin-left: ${tokens.spacing.xs};
9878
10044
  font-size: ${tokens.typography.fontSize.xs};
9879
10045
  font-weight: ${tokens.typography.fontWeight.medium};
9880
10046
  color: ${tokens.colors.text.secondary};
9881
10047
  `;
9882
- var StatsContainer = styled48.div`
10048
+ var StatsContainer = styled50.div`
9883
10049
  display: flex;
9884
10050
  align-items: center;
9885
10051
  gap: ${tokens.spacing.xs};
9886
10052
  `;
9887
- var StatItem = styled48.span`
10053
+ var StatItem = styled50.span`
9888
10054
  display: flex;
9889
10055
  align-items: center;
9890
10056
  gap: ${tokens.spacing.xs};
9891
10057
  `;
9892
- var StatValue = styled48.span`
10058
+ var StatValue = styled50.span`
9893
10059
  font-size: ${tokens.typography.fontSize.sm};
9894
10060
  color: ${tokens.colors.text.secondary};
9895
10061
  `;
9896
- var StatDivider = styled48.span`
10062
+ var StatDivider = styled50.span`
9897
10063
  color: ${tokens.colors.text.tertiary};
9898
10064
  `;
9899
- var PostPreviewSection = styled48.div`
10065
+ var PostPreviewSection = styled50.div`
9900
10066
  margin-bottom: ${tokens.spacing.md};
9901
10067
  `;
9902
- var PostTitle = styled48.a`
10068
+ var PostTitle = styled50.a`
9903
10069
  display: flex;
9904
10070
  align-items: flex-start;
9905
10071
  gap: ${tokens.spacing.xs};
@@ -9914,58 +10080,58 @@ var PostTitle = styled48.a`
9914
10080
  color: ${tokens.colors.primary};
9915
10081
  }
9916
10082
  `;
9917
- var ExternalLinkIcon = styled48.span`
10083
+ var ExternalLinkIcon = styled50.span`
9918
10084
  font-size: ${tokens.typography.fontSize.sm};
9919
10085
  color: ${tokens.colors.text.tertiary};
9920
10086
  flex-shrink: 0;
9921
10087
  `;
9922
- var PostContent2 = styled48.p`
10088
+ var PostContent2 = styled50.p`
9923
10089
  font-size: ${tokens.typography.fontSize.base};
9924
10090
  color: ${tokens.colors.text.secondary};
9925
10091
  line-height: ${tokens.typography.lineHeight.relaxed};
9926
10092
  margin-bottom: ${tokens.spacing.sm};
9927
10093
  white-space: pre-wrap;
9928
10094
  `;
9929
- var PostAuthor = styled48.div`
10095
+ var PostAuthor = styled50.div`
9930
10096
  display: flex;
9931
10097
  align-items: center;
9932
10098
  gap: ${tokens.spacing.sm};
9933
10099
  font-size: ${tokens.typography.fontSize.sm};
9934
10100
  color: ${tokens.colors.text.tertiary};
9935
10101
  `;
9936
- var PostFlair = styled48.span`
10102
+ var PostFlair = styled50.span`
9937
10103
  padding: ${tokens.spacing.xs} ${tokens.spacing.sm};
9938
10104
  border-radius: ${tokens.borderRadius.sm};
9939
10105
  background: ${tokens.colors.surface.overlay};
9940
10106
  font-size: ${tokens.typography.fontSize.xs};
9941
10107
  color: ${tokens.colors.text.secondary};
9942
10108
  `;
9943
- var Divider = styled48.hr`
10109
+ var Divider = styled50.hr`
9944
10110
  border: none;
9945
10111
  height: 1px;
9946
10112
  background: ${tokens.colors.border.default};
9947
10113
  margin: ${tokens.spacing.md} 0;
9948
10114
  `;
9949
- var ReplySection = styled48.div``;
9950
- var ReplySectionHeader = styled48.div`
10115
+ var ReplySection = styled50.div``;
10116
+ var ReplySectionHeader = styled50.div`
9951
10117
  display: flex;
9952
10118
  justify-content: space-between;
9953
10119
  align-items: center;
9954
10120
  margin-bottom: ${tokens.spacing.sm};
9955
10121
  `;
9956
- var ReplyLabel = styled48.span`
10122
+ var ReplyLabel = styled50.span`
9957
10123
  font-size: ${tokens.typography.fontSize.sm};
9958
10124
  font-weight: ${tokens.typography.fontWeight.semibold};
9959
10125
  color: ${tokens.colors.text.secondary};
9960
10126
  text-transform: uppercase;
9961
10127
  letter-spacing: 0.5px;
9962
10128
  `;
9963
- var ReplyMeta = styled48.div`
10129
+ var ReplyMeta = styled50.div`
9964
10130
  display: flex;
9965
10131
  align-items: center;
9966
10132
  gap: ${tokens.spacing.sm};
9967
10133
  `;
9968
- var ToneBadgeContainer = styled48.span`
10134
+ var ToneBadgeContainer = styled50.span`
9969
10135
  display: inline-flex;
9970
10136
  align-items: center;
9971
10137
  gap: ${tokens.spacing.xs};
@@ -9975,17 +10141,17 @@ var ToneBadgeContainer = styled48.span`
9975
10141
  background: ${({ $color }) => `${$color}20`};
9976
10142
  color: ${({ $color }) => $color};
9977
10143
  `;
9978
- var ToneIcon = styled48.img`
10144
+ var ToneIcon = styled50.img`
9979
10145
  width: 12px;
9980
10146
  height: 12px;
9981
10147
  `;
9982
- var CharacterCount = styled48.span`
10148
+ var CharacterCount = styled50.span`
9983
10149
  font-size: ${tokens.typography.fontSize.xs};
9984
10150
  font-family: ${tokens.typography.fontFamily.monospace};
9985
10151
  font-weight: ${tokens.typography.fontWeight.medium};
9986
10152
  color: ${({ $color }) => $color};
9987
10153
  `;
9988
- var ReplyContent = styled48.div`
10154
+ var ReplyContent = styled50.div`
9989
10155
  font-size: ${tokens.typography.fontSize.base};
9990
10156
  line-height: ${tokens.typography.lineHeight.relaxed};
9991
10157
  color: ${tokens.colors.text.primary};
@@ -9998,7 +10164,7 @@ var ReplyContent = styled48.div`
9998
10164
  min-height: 100px;
9999
10165
  animation: ${fadeIn3} 0.3s ease-out;
10000
10166
  `;
10001
- var ReplyTextarea = styled48.textarea`
10167
+ var ReplyTextarea = styled50.textarea`
10002
10168
  width: 100%;
10003
10169
  min-height: 150px;
10004
10170
  max-height: 400px;
@@ -10024,7 +10190,7 @@ var ReplyTextarea = styled48.textarea`
10024
10190
  color: ${tokens.colors.text.tertiary};
10025
10191
  }
10026
10192
  `;
10027
- var StrategyHint = styled48.div`
10193
+ var StrategyHint = styled50.div`
10028
10194
  display: flex;
10029
10195
  align-items: flex-start;
10030
10196
  gap: ${tokens.spacing.xs};
@@ -10033,40 +10199,40 @@ var StrategyHint = styled48.div`
10033
10199
  border-radius: ${tokens.borderRadius.sm};
10034
10200
  margin-bottom: ${tokens.spacing.sm};
10035
10201
  `;
10036
- var StrategyIconImg = styled48.img`
10202
+ var StrategyIconImg = styled50.img`
10037
10203
  width: 16px;
10038
10204
  height: 16px;
10039
10205
  opacity: 0.8;
10040
10206
  `;
10041
- var StrategyText = styled48.span`
10207
+ var StrategyText = styled50.span`
10042
10208
  font-size: ${tokens.typography.fontSize.sm};
10043
10209
  color: ${tokens.colors.text.secondary};
10044
10210
  font-style: italic;
10045
10211
  `;
10046
- var ProgressBarContainer2 = styled48.div`
10212
+ var ProgressBarContainer2 = styled50.div`
10047
10213
  margin-top: ${tokens.spacing.xs};
10048
10214
  `;
10049
- var ProgressBarTrack2 = styled48.div`
10215
+ var ProgressBarTrack2 = styled50.div`
10050
10216
  width: 100%;
10051
10217
  height: 4px;
10052
10218
  background: ${tokens.colors.border.default};
10053
10219
  border-radius: ${tokens.borderRadius.sm};
10054
10220
  overflow: hidden;
10055
10221
  `;
10056
- var ProgressBarFill3 = styled48.div`
10222
+ var ProgressBarFill3 = styled50.div`
10057
10223
  width: ${({ $percentage }) => $percentage}%;
10058
10224
  height: 100%;
10059
10225
  border-radius: ${tokens.borderRadius.sm};
10060
10226
  transition: width 0.3s ease, background-color 0.3s ease;
10061
10227
  background: ${({ $color }) => $color};
10062
10228
  `;
10063
- var SkeletonContent2 = styled48.div`
10229
+ var SkeletonContent2 = styled50.div`
10064
10230
  display: flex;
10065
10231
  flex-direction: column;
10066
10232
  gap: ${tokens.spacing.sm};
10067
10233
  padding: ${tokens.spacing.md};
10068
10234
  `;
10069
- var SkeletonLine2 = styled48.div`
10235
+ var SkeletonLine2 = styled50.div`
10070
10236
  height: 16px;
10071
10237
  width: ${({ $width }) => $width};
10072
10238
  background: linear-gradient(
@@ -10239,7 +10405,7 @@ var pulse4 = keyframes`
10239
10405
  box-shadow: 0 0 0 8px ${tokens.colors.primary}00;
10240
10406
  }
10241
10407
  `;
10242
- var ControlsContainer = styled48.div`
10408
+ var ControlsContainer = styled50.div`
10243
10409
  display: flex;
10244
10410
  flex-direction: column;
10245
10411
  gap: ${tokens.spacing.md};
@@ -10248,7 +10414,7 @@ var ControlsContainer = styled48.div`
10248
10414
  border-radius: ${tokens.borderRadius.lg};
10249
10415
  border: 1px solid ${tokens.colors.border.default};
10250
10416
  `;
10251
- var EditModeSection = styled48.div`
10417
+ var EditModeSection = styled50.div`
10252
10418
  display: flex;
10253
10419
  justify-content: space-between;
10254
10420
  align-items: center;
@@ -10257,25 +10423,25 @@ var EditModeSection = styled48.div`
10257
10423
  border: 1px solid ${tokens.colors.status.editing}40;
10258
10424
  border-radius: ${tokens.borderRadius.md};
10259
10425
  `;
10260
- var EditModeLabel = styled48.span`
10426
+ var EditModeLabel = styled50.span`
10261
10427
  font-size: ${tokens.typography.fontSize.sm};
10262
10428
  font-weight: ${tokens.typography.fontWeight.medium};
10263
10429
  color: ${tokens.colors.status.editing};
10264
10430
  `;
10265
- var EditModeActions = styled48.div`
10431
+ var EditModeActions = styled50.div`
10266
10432
  display: flex;
10267
10433
  gap: ${tokens.spacing.sm};
10268
10434
  `;
10269
- var InputSection = styled48.div`
10435
+ var InputSection = styled50.div`
10270
10436
  display: flex;
10271
10437
  flex-direction: column;
10272
10438
  gap: ${tokens.spacing.xs};
10273
10439
  `;
10274
- var InputLabel = styled48.label`
10440
+ var InputLabel = styled50.label`
10275
10441
  font-size: ${tokens.typography.fontSize.sm};
10276
10442
  color: ${tokens.colors.text.secondary};
10277
10443
  `;
10278
- var InputRow = styled48.div`
10444
+ var InputRow = styled50.div`
10279
10445
  display: flex;
10280
10446
  gap: ${tokens.spacing.xs};
10281
10447
  flex-wrap: wrap;
@@ -10284,7 +10450,7 @@ var InputRow = styled48.div`
10284
10450
  flex-direction: column;
10285
10451
  }
10286
10452
  `;
10287
- var TextInput = styled48.input`
10453
+ var TextInput = styled50.input`
10288
10454
  flex: 1;
10289
10455
  min-width: 0;
10290
10456
  padding: ${tokens.spacing.sm};
@@ -10308,7 +10474,7 @@ var TextInput = styled48.input`
10308
10474
  width: 100%;
10309
10475
  }
10310
10476
  `;
10311
- var SmallButton = styled48.button`
10477
+ var SmallButton = styled50.button`
10312
10478
  padding: ${tokens.spacing.sm};
10313
10479
  font-size: ${tokens.typography.fontSize.base};
10314
10480
  color: ${tokens.colors.text.tertiary};
@@ -10323,12 +10489,12 @@ var SmallButton = styled48.button`
10323
10489
  background: ${tokens.colors.surface.overlay};
10324
10490
  }
10325
10491
  `;
10326
- var MainActions = styled48.div`
10492
+ var MainActions = styled50.div`
10327
10493
  display: flex;
10328
10494
  flex-direction: column;
10329
10495
  gap: ${tokens.spacing.md};
10330
10496
  `;
10331
- var SecondaryActions = styled48.div`
10497
+ var SecondaryActions = styled50.div`
10332
10498
  display: flex;
10333
10499
  gap: ${tokens.spacing.sm};
10334
10500
  flex-wrap: wrap;
@@ -10339,7 +10505,7 @@ var SecondaryActions = styled48.div`
10339
10505
  }
10340
10506
  }
10341
10507
  `;
10342
- var PrimaryActions = styled48.div`
10508
+ var PrimaryActions = styled50.div`
10343
10509
  display: flex;
10344
10510
  gap: ${tokens.spacing.sm};
10345
10511
  flex-wrap: wrap;
@@ -10350,12 +10516,12 @@ var PrimaryActions = styled48.div`
10350
10516
  }
10351
10517
  }
10352
10518
  `;
10353
- var Icon3 = styled48.img`
10519
+ var Icon3 = styled50.img`
10354
10520
  width: 16px;
10355
10521
  height: 16px;
10356
10522
  vertical-align: middle;
10357
10523
  `;
10358
- var ActionButton6 = styled48.button`
10524
+ var ActionButton6 = styled50.button`
10359
10525
  display: flex;
10360
10526
  align-items: center;
10361
10527
  justify-content: center;
@@ -10546,7 +10712,7 @@ function TokenUsageCard({
10546
10712
  }
10547
10713
  return /* @__PURE__ */ jsxs(Card2, { className, "data-testid": "token-usage-card", children: [
10548
10714
  /* @__PURE__ */ jsxs(Header4, { children: [
10549
- /* @__PURE__ */ jsx(Title2, { children: "Token Usage" }),
10715
+ /* @__PURE__ */ jsx(Title2, { children: "Credit Usage" }),
10550
10716
  /* @__PURE__ */ jsx(Period, { children: periodLabel })
10551
10717
  ] }),
10552
10718
  /* @__PURE__ */ jsxs(UsageSection, { children: [
@@ -10573,7 +10739,7 @@ function TokenUsageCard({
10573
10739
  ] })
10574
10740
  ] }),
10575
10741
  /* @__PURE__ */ jsxs(TransactionTokens, { $type: transaction.type, children: [
10576
- transaction.type === "output" ? "+" : "",
10742
+ transaction.type === "input" ? "+" : "-",
10577
10743
  formatNumber2(transaction.tokens)
10578
10744
  ] })
10579
10745
  ] }, transaction.id)) })
@@ -10582,7 +10748,7 @@ function TokenUsageCard({
10582
10748
  onViewAll && transactions.length > 0 && /* @__PURE__ */ jsx(ViewAllButton, { onClick: onViewAll, children: "View all activity" })
10583
10749
  ] });
10584
10750
  }
10585
- var Card2 = styled48.div`
10751
+ var Card2 = styled50.div`
10586
10752
  display: flex;
10587
10753
  flex-direction: column;
10588
10754
  background: ${tokens.colors.background.darker};
@@ -10591,7 +10757,7 @@ var Card2 = styled48.div`
10591
10757
  height: 100%;
10592
10758
  overflow: hidden;
10593
10759
  `;
10594
- var Header4 = styled48.div`
10760
+ var Header4 = styled50.div`
10595
10761
  display: flex;
10596
10762
  justify-content: space-between;
10597
10763
  align-items: center;
@@ -10601,65 +10767,65 @@ var Header4 = styled48.div`
10601
10767
  min-height: 48px;
10602
10768
  flex-shrink: 0;
10603
10769
  `;
10604
- var Title2 = styled48.h3`
10770
+ var Title2 = styled50.h3`
10605
10771
  margin: 0;
10606
10772
  font-size: ${tokens.typography.fontSize.lg};
10607
10773
  font-weight: ${tokens.typography.fontWeight.semibold};
10608
10774
  font-family: ${tokens.typography.fontFamily.primary};
10609
10775
  color: ${tokens.colors.text.primary};
10610
10776
  `;
10611
- var Period = styled48.span`
10777
+ var Period = styled50.span`
10612
10778
  font-size: ${tokens.typography.fontSize.sm};
10613
10779
  font-family: ${tokens.typography.fontFamily.primary};
10614
10780
  color: ${tokens.colors.text.secondary};
10615
10781
  `;
10616
- var UsageSection = styled48.div`
10782
+ var UsageSection = styled50.div`
10617
10783
  display: flex;
10618
10784
  flex-direction: column;
10619
10785
  gap: ${tokens.spacing.sm};
10620
10786
  padding: ${tokens.spacing.md};
10621
10787
  `;
10622
- var UsageStats = styled48.div`
10788
+ var UsageStats = styled50.div`
10623
10789
  display: flex;
10624
10790
  align-items: baseline;
10625
10791
  gap: ${tokens.spacing.xs};
10626
10792
  `;
10627
- var CurrentUsage = styled48.span`
10793
+ var CurrentUsage = styled50.span`
10628
10794
  font-size: ${tokens.typography.fontSize["2xl"]};
10629
10795
  font-weight: ${tokens.typography.fontWeight.bold};
10630
10796
  font-family: ${tokens.typography.fontFamily.primary};
10631
10797
  color: ${tokens.colors.text.primary};
10632
10798
  `;
10633
- var UsageSeparator = styled48.span`
10799
+ var UsageSeparator = styled50.span`
10634
10800
  font-size: ${tokens.typography.fontSize.lg};
10635
10801
  font-family: ${tokens.typography.fontFamily.primary};
10636
10802
  color: ${tokens.colors.text.tertiary};
10637
10803
  `;
10638
- var MaxUsage = styled48.span`
10804
+ var MaxUsage = styled50.span`
10639
10805
  font-size: ${tokens.typography.fontSize.lg};
10640
10806
  font-family: ${tokens.typography.fontFamily.primary};
10641
10807
  color: ${tokens.colors.text.secondary};
10642
10808
  `;
10643
- var ProgressContainer = styled48.div`
10809
+ var ProgressContainer = styled50.div`
10644
10810
  width: 100%;
10645
10811
  height: 8px;
10646
10812
  background: ${tokens.colors.background.light};
10647
10813
  border-radius: ${tokens.borderRadius.full};
10648
10814
  overflow: hidden;
10649
10815
  `;
10650
- var ProgressBar3 = styled48.div`
10816
+ var ProgressBar3 = styled50.div`
10651
10817
  height: 100%;
10652
10818
  width: ${({ $percentage }) => $percentage}%;
10653
10819
  background: ${({ $level }) => usageLevelColors[$level]};
10654
10820
  border-radius: ${tokens.borderRadius.full};
10655
10821
  transition: width ${tokens.transitions.normal}, background ${tokens.transitions.normal};
10656
10822
  `;
10657
- var PercentageLabel = styled48.span`
10823
+ var PercentageLabel = styled50.span`
10658
10824
  font-size: ${tokens.typography.fontSize.sm};
10659
10825
  font-family: ${tokens.typography.fontFamily.primary};
10660
10826
  color: ${({ $level }) => usageLevelColors[$level]};
10661
10827
  `;
10662
- var TransactionsSection = styled48.div`
10828
+ var TransactionsSection = styled50.div`
10663
10829
  display: flex;
10664
10830
  flex-direction: column;
10665
10831
  gap: ${tokens.spacing.sm};
@@ -10669,19 +10835,19 @@ var TransactionsSection = styled48.div`
10669
10835
  overflow-y: auto;
10670
10836
  min-height: 0;
10671
10837
  `;
10672
- var TransactionsHeader = styled48.h4`
10838
+ var TransactionsHeader = styled50.h4`
10673
10839
  margin: 0;
10674
10840
  font-size: ${tokens.typography.fontSize.sm};
10675
10841
  font-weight: ${tokens.typography.fontWeight.semibold};
10676
10842
  font-family: ${tokens.typography.fontFamily.primary};
10677
10843
  color: ${tokens.colors.text.secondary};
10678
10844
  `;
10679
- var TransactionsList = styled48.div`
10845
+ var TransactionsList = styled50.div`
10680
10846
  display: flex;
10681
10847
  flex-direction: column;
10682
10848
  gap: ${tokens.spacing.sm};
10683
10849
  `;
10684
- var TransactionItem = styled48.div`
10850
+ var TransactionItem = styled50.div`
10685
10851
  display: flex;
10686
10852
  align-items: center;
10687
10853
  gap: ${tokens.spacing.sm};
@@ -10698,7 +10864,7 @@ var TransactionItem = styled48.div`
10698
10864
  border-color: ${tokens.colors.border.hover};
10699
10865
  }
10700
10866
  `;
10701
- var TransactionIcon = styled48.span`
10867
+ var TransactionIcon = styled50.span`
10702
10868
  width: 24px;
10703
10869
  height: 24px;
10704
10870
  display: flex;
@@ -10720,12 +10886,12 @@ var TransactionIcon = styled48.span`
10720
10886
  }};
10721
10887
  }
10722
10888
  `;
10723
- var TransactionInfo = styled48.div`
10889
+ var TransactionInfo = styled50.div`
10724
10890
  flex: 1;
10725
10891
  min-width: 0;
10726
10892
  overflow: hidden;
10727
10893
  `;
10728
- var TransactionDescription = styled48.div`
10894
+ var TransactionDescription = styled50.div`
10729
10895
  font-size: ${tokens.typography.fontSize.sm};
10730
10896
  font-family: ${tokens.typography.fontFamily.primary};
10731
10897
  color: ${tokens.colors.text.primary};
@@ -10733,7 +10899,7 @@ var TransactionDescription = styled48.div`
10733
10899
  text-overflow: ellipsis;
10734
10900
  white-space: nowrap;
10735
10901
  `;
10736
- var TransactionMeta = styled48.div`
10902
+ var TransactionMeta = styled50.div`
10737
10903
  display: flex;
10738
10904
  gap: ${tokens.spacing.sm};
10739
10905
  font-size: ${tokens.typography.fontSize.xs};
@@ -10747,21 +10913,21 @@ var TransactionMeta = styled48.div`
10747
10913
  white-space: nowrap;
10748
10914
  }
10749
10915
  `;
10750
- var TransactionTokens = styled48.span`
10916
+ var TransactionTokens = styled50.span`
10751
10917
  font-size: ${tokens.typography.fontSize.sm};
10752
10918
  font-weight: ${tokens.typography.fontWeight.medium};
10753
10919
  font-family: ${tokens.typography.fontFamily.primary};
10754
10920
  color: ${({ $type }) => typeColors[$type]};
10755
10921
  flex-shrink: 0;
10756
10922
  `;
10757
- var EmptyState4 = styled48.div`
10923
+ var EmptyState4 = styled50.div`
10758
10924
  text-align: center;
10759
10925
  padding: ${tokens.spacing.lg} ${tokens.spacing.md};
10760
10926
  font-size: ${tokens.typography.fontSize.sm};
10761
10927
  font-family: ${tokens.typography.fontFamily.primary};
10762
10928
  color: ${tokens.colors.text.tertiary};
10763
10929
  `;
10764
- var ViewAllButton = styled48.button`
10930
+ var ViewAllButton = styled50.button`
10765
10931
  margin: 0 ${tokens.spacing.md} ${tokens.spacing.md};
10766
10932
  padding: ${tokens.spacing.sm} ${tokens.spacing.md};
10767
10933
  background: transparent;
@@ -10783,7 +10949,7 @@ var pulse5 = keyframes`
10783
10949
  0%, 100% { opacity: 1; }
10784
10950
  50% { opacity: 0.4; }
10785
10951
  `;
10786
- var SkeletonBlock = styled48.div`
10952
+ var SkeletonBlock = styled50.div`
10787
10953
  width: ${({ $width }) => $width};
10788
10954
  height: ${({ $height }) => $height};
10789
10955
  background: ${tokens.colors.background.light};
@@ -10861,7 +11027,7 @@ var WorkflowCard = ({
10861
11027
  );
10862
11028
  };
10863
11029
  WorkflowCard.displayName = "WorkflowCard";
10864
- var Card3 = styled48.button`
11030
+ var Card3 = styled50.button`
10865
11031
  display: grid;
10866
11032
  gap: ${tokens.spacing.sm};
10867
11033
  padding: ${tokens.spacing.md};
@@ -10892,7 +11058,7 @@ var Card3 = styled48.button`
10892
11058
  cursor: not-allowed;
10893
11059
  }
10894
11060
  `;
10895
- var WorkflowName2 = styled48.h3`
11061
+ var WorkflowName2 = styled50.h3`
10896
11062
  margin: 0;
10897
11063
  font-size: ${tokens.typography.fontSize.base};
10898
11064
  font-weight: ${tokens.typography.fontWeight.semibold};
@@ -10903,7 +11069,7 @@ var WorkflowName2 = styled48.h3`
10903
11069
  white-space: nowrap;
10904
11070
  min-width: 0;
10905
11071
  `;
10906
- var Description2 = styled48.p`
11072
+ var Description2 = styled50.p`
10907
11073
  margin: 0;
10908
11074
  font-size: ${tokens.typography.fontSize.sm};
10909
11075
  color: ${tokens.colors.text.tertiary};
@@ -10915,7 +11081,7 @@ var Description2 = styled48.p`
10915
11081
  word-break: break-word;
10916
11082
  min-width: 0;
10917
11083
  `;
10918
- var CardFooter = styled48.div`
11084
+ var CardFooter = styled50.div`
10919
11085
  display: flex;
10920
11086
  flex-wrap: wrap;
10921
11087
  align-items: center;
@@ -10924,13 +11090,13 @@ var CardFooter = styled48.div`
10924
11090
  border-top: 1px solid ${tokens.colors.border.subtle};
10925
11091
  width: 100%;
10926
11092
  `;
10927
- var IntegrationList = styled48.div`
11093
+ var IntegrationList = styled50.div`
10928
11094
  display: flex;
10929
11095
  align-items: center;
10930
11096
  gap: ${tokens.spacing.xs};
10931
11097
  flex-shrink: 0;
10932
11098
  `;
10933
- var IntegrationIconWrapper = styled48.span`
11099
+ var IntegrationIconWrapper = styled50.span`
10934
11100
  display: flex;
10935
11101
  align-items: center;
10936
11102
  justify-content: center;
@@ -10952,12 +11118,12 @@ var IntegrationIconWrapper = styled48.span`
10952
11118
  }
10953
11119
  `}
10954
11120
  `;
10955
- var IntegrationIcon = styled48.img`
11121
+ var IntegrationIcon = styled50.img`
10956
11122
  width: 16px;
10957
11123
  height: 16px;
10958
11124
  object-fit: contain;
10959
11125
  `;
10960
- var Indicators = styled48.div`
11126
+ var Indicators = styled50.div`
10961
11127
  display: flex;
10962
11128
  align-items: center;
10963
11129
  flex-wrap: wrap;
@@ -10965,7 +11131,7 @@ var Indicators = styled48.div`
10965
11131
  margin-left: auto;
10966
11132
  min-width: 0;
10967
11133
  `;
10968
- var IndicatorPill = styled48.span`
11134
+ var IndicatorPill = styled50.span`
10969
11135
  display: inline-flex;
10970
11136
  align-items: center;
10971
11137
  gap: ${tokens.spacing.xs};
@@ -10974,14 +11140,14 @@ var IndicatorPill = styled48.span`
10974
11140
  background: ${({ $variant }) => $variant === "warning" ? `${tokens.colors.warning}15` : `${tokens.colors.info}15`};
10975
11141
  border: 1px solid ${({ $variant }) => $variant === "warning" ? `${tokens.colors.warning}30` : `${tokens.colors.info}30`};
10976
11142
  `;
10977
- var IndicatorDot = styled48.span`
11143
+ var IndicatorDot = styled50.span`
10978
11144
  width: 6px;
10979
11145
  height: 6px;
10980
11146
  border-radius: ${tokens.borderRadius.full};
10981
11147
  background: ${({ $variant }) => $variant === "warning" ? tokens.colors.warning : tokens.colors.info};
10982
11148
  flex-shrink: 0;
10983
11149
  `;
10984
- var IndicatorText = styled48.span`
11150
+ var IndicatorText = styled50.span`
10985
11151
  font-size: ${tokens.typography.fontSize.xs};
10986
11152
  font-weight: ${tokens.typography.fontWeight.medium};
10987
11153
  color: ${tokens.colors.text.secondary};
@@ -10992,7 +11158,7 @@ var severityColors = {
10992
11158
  warning: tokens.colors.warning,
10993
11159
  info: tokens.colors.info
10994
11160
  };
10995
- var AlertContainer = styled48.div`
11161
+ var AlertContainer = styled50.div`
10996
11162
  display: flex;
10997
11163
  flex-direction: column;
10998
11164
  background-color: ${(props) => {
@@ -11010,7 +11176,7 @@ var AlertContainer = styled48.div`
11010
11176
  max-width: ${(props) => props.variant === "inline" ? "600px" : "100%"};
11011
11177
  font-family: ${tokens.typography.fontFamily.primary};
11012
11178
  `;
11013
- var ModalOverlay = styled48.div`
11179
+ var ModalOverlay = styled50.div`
11014
11180
  position: fixed;
11015
11181
  top: 0;
11016
11182
  left: 0;
@@ -11023,53 +11189,53 @@ var ModalOverlay = styled48.div`
11023
11189
  z-index: ${tokens.zIndex.modal};
11024
11190
  padding: ${tokens.spacing.lg};
11025
11191
  `;
11026
- var ModalContent = styled48.div`
11192
+ var ModalContent = styled50.div`
11027
11193
  background-color: ${tokens.colors.background.dark};
11028
11194
  border-radius: ${tokens.borderRadius.lg};
11029
11195
  max-width: 500px;
11030
11196
  width: 100%;
11031
11197
  box-shadow: ${tokens.shadows.xl};
11032
11198
  `;
11033
- var Header5 = styled48.div`
11199
+ var Header5 = styled50.div`
11034
11200
  display: flex;
11035
11201
  align-items: flex-start;
11036
11202
  gap: ${tokens.spacing.md};
11037
11203
  `;
11038
- var IconContainer2 = styled48.div`
11204
+ var IconContainer2 = styled50.div`
11039
11205
  flex-shrink: 0;
11040
11206
  width: 24px;
11041
11207
  height: 24px;
11042
11208
  color: ${(props) => severityColors[props.severity]};
11043
11209
  `;
11044
- var Content5 = styled48.div`
11210
+ var Content5 = styled50.div`
11045
11211
  flex: 1;
11046
11212
  display: flex;
11047
11213
  flex-direction: column;
11048
11214
  gap: ${tokens.spacing.sm};
11049
11215
  `;
11050
- var Title3 = styled48.div`
11216
+ var Title3 = styled50.div`
11051
11217
  font-size: ${tokens.typography.fontSize.base};
11052
11218
  font-weight: ${tokens.typography.fontWeight.semibold};
11053
11219
  color: ${tokens.colors.text.primary};
11054
11220
  line-height: ${tokens.typography.lineHeight.tight};
11055
11221
  `;
11056
- var ErrorMessage2 = styled48.div`
11222
+ var ErrorMessage2 = styled50.div`
11057
11223
  font-size: ${tokens.typography.fontSize.sm};
11058
11224
  line-height: ${tokens.typography.lineHeight.normal};
11059
11225
  color: ${tokens.colors.text.secondary};
11060
11226
  `;
11061
- var ErrorCode = styled48.div`
11227
+ var ErrorCode = styled50.div`
11062
11228
  font-size: ${tokens.typography.fontSize.xs};
11063
11229
  color: ${tokens.colors.text.secondary};
11064
11230
  font-family: ${tokens.typography.fontFamily.monospace};
11065
11231
  margin-top: ${tokens.spacing.xs};
11066
11232
  `;
11067
- var Timestamp = styled48.div`
11233
+ var Timestamp = styled50.div`
11068
11234
  font-size: ${tokens.typography.fontSize.xs};
11069
11235
  color: ${tokens.colors.text.tertiary};
11070
11236
  margin-top: ${tokens.spacing.xs};
11071
11237
  `;
11072
- var Details = styled48.details`
11238
+ var Details = styled50.details`
11073
11239
  margin-top: ${tokens.spacing.md};
11074
11240
  cursor: pointer;
11075
11241
 
@@ -11092,12 +11258,12 @@ var Details = styled48.details`
11092
11258
  }
11093
11259
  }
11094
11260
  `;
11095
- var DetailsIcon = styled48.span`
11261
+ var DetailsIcon = styled50.span`
11096
11262
  display: inline-block;
11097
11263
  transition: transform ${tokens.transitions.fast};
11098
11264
  transform: ${(props) => props.open ? "rotate(90deg)" : "rotate(0deg)"};
11099
11265
  `;
11100
- var StackTrace = styled48.pre`
11266
+ var StackTrace = styled50.pre`
11101
11267
  margin: ${tokens.spacing.sm} 0 0 0;
11102
11268
  padding: ${tokens.spacing.md};
11103
11269
  background-color: ${tokens.colors.surface.subtle};
@@ -11110,12 +11276,12 @@ var StackTrace = styled48.pre`
11110
11276
  word-break: break-word;
11111
11277
  overflow-x: auto;
11112
11278
  `;
11113
- var Actions4 = styled48.div`
11279
+ var Actions4 = styled50.div`
11114
11280
  display: flex;
11115
11281
  gap: ${tokens.spacing.sm};
11116
11282
  margin-top: ${tokens.spacing.md};
11117
11283
  `;
11118
- var Button4 = styled48.button`
11284
+ var Button4 = styled50.button`
11119
11285
  display: inline-flex;
11120
11286
  align-items: center;
11121
11287
  gap: ${tokens.spacing.xs};
@@ -11144,7 +11310,7 @@ var Button4 = styled48.button`
11144
11310
  cursor: not-allowed;
11145
11311
  }
11146
11312
  `;
11147
- var CloseButton2 = styled48.button`
11313
+ var CloseButton2 = styled50.button`
11148
11314
  position: absolute;
11149
11315
  top: ${tokens.spacing.md};
11150
11316
  right: ${tokens.spacing.md};
@@ -11318,14 +11484,14 @@ var statusColors2 = {
11318
11484
  failed: tokens.colors.status.failed,
11319
11485
  timeout: tokens.colors.status.timeout
11320
11486
  };
11321
- var Container15 = styled48.div`
11487
+ var Container15 = styled50.div`
11322
11488
  display: flex;
11323
11489
  flex-direction: column;
11324
11490
  gap: ${tokens.spacing.sm};
11325
11491
  width: 100%;
11326
11492
  font-family: ${tokens.typography.fontFamily.primary};
11327
11493
  `;
11328
- var ProgressMessage = styled48.div`
11494
+ var ProgressMessage = styled50.div`
11329
11495
  font-size: ${(props) => {
11330
11496
  switch (props.size) {
11331
11497
  case "sm":
@@ -11340,13 +11506,13 @@ var ProgressMessage = styled48.div`
11340
11506
  color: ${tokens.colors.text.secondary};
11341
11507
  line-height: ${tokens.typography.lineHeight.normal};
11342
11508
  `;
11343
- var ProgressInfo = styled48.div`
11509
+ var ProgressInfo = styled50.div`
11344
11510
  display: flex;
11345
11511
  justify-content: space-between;
11346
11512
  align-items: center;
11347
11513
  margin-bottom: ${tokens.spacing.xs};
11348
11514
  `;
11349
- var PercentageText = styled48.span`
11515
+ var PercentageText = styled50.span`
11350
11516
  font-size: ${(props) => {
11351
11517
  switch (props.size) {
11352
11518
  case "sm":
@@ -11361,7 +11527,7 @@ var PercentageText = styled48.span`
11361
11527
  font-weight: ${tokens.typography.fontWeight.medium};
11362
11528
  color: ${tokens.colors.text.primary};
11363
11529
  `;
11364
- var LinearTrack = styled48.div`
11530
+ var LinearTrack = styled50.div`
11365
11531
  position: relative;
11366
11532
  width: 100%;
11367
11533
  height: ${(props) => {
@@ -11379,7 +11545,7 @@ var LinearTrack = styled48.div`
11379
11545
  border-radius: ${tokens.borderRadius.full};
11380
11546
  overflow: hidden;
11381
11547
  `;
11382
- var LinearFill = styled48.div`
11548
+ var LinearFill = styled50.div`
11383
11549
  position: absolute;
11384
11550
  top: 0;
11385
11551
  left: 0;
@@ -11390,12 +11556,12 @@ var LinearFill = styled48.div`
11390
11556
  transition: ${(props) => props.animated && !props.indeterminate ? `width ${tokens.transitions.normal}` : "none"};
11391
11557
  animation: ${(props) => props.indeterminate ? indeterminate : "none"} 1.5s ease-in-out infinite;
11392
11558
  `;
11393
- var CircularContainer = styled48.div`
11559
+ var CircularContainer = styled50.div`
11394
11560
  display: flex;
11395
11561
  align-items: center;
11396
11562
  justify-content: center;
11397
11563
  `;
11398
- var CircularSvg = styled48.svg`
11564
+ var CircularSvg = styled50.svg`
11399
11565
  width: ${(props) => {
11400
11566
  switch (props.size) {
11401
11567
  case "sm":
@@ -11431,12 +11597,12 @@ var getCircularSize = (size) => {
11431
11597
  return { radius: 26, strokeWidth: 4 };
11432
11598
  }
11433
11599
  };
11434
- var CircularTrack = styled48.circle`
11600
+ var CircularTrack = styled50.circle`
11435
11601
  fill: none;
11436
11602
  stroke: ${tokens.colors.border.default};
11437
11603
  stroke-width: ${(props) => getCircularSize(props.size).strokeWidth};
11438
11604
  `;
11439
- var CircularFill = styled48.circle`
11605
+ var CircularFill = styled50.circle`
11440
11606
  fill: none;
11441
11607
  stroke: ${(props) => statusColors2[props.status]};
11442
11608
  stroke-width: ${(props) => getCircularSize(props.size).strokeWidth};
@@ -11454,7 +11620,7 @@ var CircularFill = styled48.circle`
11454
11620
  transition: ${(props) => props.animated && !props.indeterminate ? `stroke-dashoffset ${tokens.transitions.normal}` : "none"};
11455
11621
  animation: ${(props) => props.indeterminate ? rotate : "none"} 1.5s linear infinite;
11456
11622
  `;
11457
- var CircularPercentage = styled48.text`
11623
+ var CircularPercentage = styled50.text`
11458
11624
  fill: ${tokens.colors.text.primary};
11459
11625
  font-size: ${(props) => {
11460
11626
  switch (props.size) {
@@ -11555,7 +11721,7 @@ var WorkflowProgressBar = ({
11555
11721
  ] });
11556
11722
  };
11557
11723
  WorkflowProgressBar.displayName = "WorkflowProgressBar";
11558
- var Panel = styled48.div`
11724
+ var Panel = styled50.div`
11559
11725
  display: flex;
11560
11726
  flex-direction: column;
11561
11727
  background-color: ${tokens.colors.surface.overlay};
@@ -11564,7 +11730,7 @@ var Panel = styled48.div`
11564
11730
  overflow: hidden;
11565
11731
  font-family: ${tokens.typography.fontFamily.primary};
11566
11732
  `;
11567
- var Header6 = styled48.div`
11733
+ var Header6 = styled50.div`
11568
11734
  display: flex;
11569
11735
  justify-content: space-between;
11570
11736
  align-items: center;
@@ -11578,7 +11744,7 @@ var Header6 = styled48.div`
11578
11744
  background-color: ${(props) => props.collapsible ? tokens.colors.surface.overlay : tokens.colors.surface.subtle};
11579
11745
  }
11580
11746
  `;
11581
- var Title4 = styled48.div`
11747
+ var Title4 = styled50.div`
11582
11748
  font-size: ${tokens.typography.fontSize.sm};
11583
11749
  font-weight: ${tokens.typography.fontWeight.medium};
11584
11750
  color: ${tokens.colors.text.primary};
@@ -11586,11 +11752,11 @@ var Title4 = styled48.div`
11586
11752
  align-items: center;
11587
11753
  gap: ${tokens.spacing.sm};
11588
11754
  `;
11589
- var Actions5 = styled48.div`
11755
+ var Actions5 = styled50.div`
11590
11756
  display: flex;
11591
11757
  gap: ${tokens.spacing.sm};
11592
11758
  `;
11593
- var IconButton = styled48.button`
11759
+ var IconButton = styled50.button`
11594
11760
  display: flex;
11595
11761
  align-items: center;
11596
11762
  justify-content: center;
@@ -11619,7 +11785,7 @@ var IconButton = styled48.button`
11619
11785
  height: 16px;
11620
11786
  }
11621
11787
  `;
11622
- var CollapseIcon2 = styled48.div`
11788
+ var CollapseIcon2 = styled50.div`
11623
11789
  display: flex;
11624
11790
  align-items: center;
11625
11791
  justify-content: center;
@@ -11632,7 +11798,7 @@ var CollapseIcon2 = styled48.div`
11632
11798
  height: 16px;
11633
11799
  }
11634
11800
  `;
11635
- var Content6 = styled48.div`
11801
+ var Content6 = styled50.div`
11636
11802
  padding: ${tokens.spacing.md};
11637
11803
  max-height: ${(props) => {
11638
11804
  if (!props.expanded) return "0";
@@ -11660,7 +11826,7 @@ var Content6 = styled48.div`
11660
11826
  background: ${tokens.colors.scrollbar.thumbHover};
11661
11827
  }
11662
11828
  `;
11663
- var JsonView = styled48.pre`
11829
+ var JsonView = styled50.pre`
11664
11830
  margin: 0;
11665
11831
  font-family: ${tokens.typography.fontFamily.monospace};
11666
11832
  font-size: ${tokens.typography.fontSize.sm};
@@ -11669,12 +11835,12 @@ var JsonView = styled48.pre`
11669
11835
  white-space: pre-wrap;
11670
11836
  word-break: break-word;
11671
11837
  `;
11672
- var FormattedView = styled48.div`
11838
+ var FormattedView = styled50.div`
11673
11839
  font-size: ${tokens.typography.fontSize.sm};
11674
11840
  line-height: ${tokens.typography.lineHeight.normal};
11675
11841
  color: ${tokens.colors.text.secondary};
11676
11842
  `;
11677
- var TableView = styled48.table`
11843
+ var TableView = styled50.table`
11678
11844
  width: 100%;
11679
11845
  border-collapse: collapse;
11680
11846
  font-size: ${tokens.typography.fontSize.sm};
@@ -11698,7 +11864,7 @@ var TableView = styled48.table`
11698
11864
  border-bottom: none;
11699
11865
  }
11700
11866
  `;
11701
- var EmptyState5 = styled48.div`
11867
+ var EmptyState5 = styled50.div`
11702
11868
  padding: ${tokens.spacing.xl};
11703
11869
  text-align: center;
11704
11870
  color: ${tokens.colors.text.tertiary};
@@ -11794,7 +11960,7 @@ var statusColors3 = {
11794
11960
  failed: tokens.colors.status.failed,
11795
11961
  timeout: tokens.colors.status.timeout
11796
11962
  };
11797
- var BadgeContainer2 = styled48.div`
11963
+ var BadgeContainer2 = styled50.div`
11798
11964
  display: inline-flex;
11799
11965
  align-items: center;
11800
11966
  gap: ${(props) => {
@@ -11848,7 +12014,7 @@ var BadgeContainer2 = styled48.div`
11848
12014
  color: ${(props) => statusColors3[props.$status]};
11849
12015
  line-height: 1.4;
11850
12016
  `;
11851
- var IconContainer3 = styled48.div`
12017
+ var IconContainer3 = styled50.div`
11852
12018
  display: flex;
11853
12019
  align-items: center;
11854
12020
  justify-content: center;
@@ -11927,7 +12093,7 @@ var TimeoutIcon = () => /* @__PURE__ */ jsx(
11927
12093
  children: /* @__PURE__ */ jsx("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" })
11928
12094
  }
11929
12095
  );
11930
- var Label2 = styled48.span`
12096
+ var Label2 = styled50.span`
11931
12097
  white-space: nowrap;
11932
12098
  `;
11933
12099
  var getDefaultLabel = (status) => {
@@ -11985,6 +12151,6 @@ var WorkflowStatusBadge = ({
11985
12151
  };
11986
12152
  WorkflowStatusBadge.displayName = "WorkflowStatusBadge";
11987
12153
 
11988
- 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 };
11989
12155
  //# sourceMappingURL=index.js.map
11990
12156
  //# sourceMappingURL=index.js.map