@pstdio/ui 0.5.0 → 0.5.2

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.
Files changed (87) hide show
  1. package/dist/{MermaidComponent-DwEDwpo2.js → MermaidComponent-DDCxR-Gs.js} +2 -2
  2. package/dist/{MermaidComponent-DwEDwpo2.js.map → MermaidComponent-DDCxR-Gs.js.map} +1 -1
  3. package/dist/chat-ui.js +1358 -877
  4. package/dist/chat-ui.js.map +1 -1
  5. package/dist/components/app-shell/app-shell.d.ts +1 -0
  6. package/dist/components/app-shell/command-palette.d.ts +16 -0
  7. package/dist/components/app-shell/file-tree.d.ts +7 -0
  8. package/dist/components/app-shell/mock-chat.d.ts +2 -0
  9. package/dist/components/app-shell/mock-data.d.ts +37 -0
  10. package/dist/components/app-shell/pages/project-list-page.d.ts +7 -0
  11. package/dist/components/app-shell/pages/sessions-page.d.ts +6 -0
  12. package/dist/components/app-shell/pages/settings-page.d.ts +5 -0
  13. package/dist/components/app-shell/pages/ticket-details-page.d.ts +7 -0
  14. package/dist/components/app-shell/pages/tickets-page.d.ts +7 -0
  15. package/dist/components/app-shell/pages/workspace-page.d.ts +1 -0
  16. package/dist/components/app-shell/resizable-panel.d.ts +13 -0
  17. package/dist/components/chat-ui/agent-types.d.ts +4 -0
  18. package/dist/components/chat-ui/components/ai-message.d.ts +7 -5
  19. package/dist/components/chat-ui/components/chat-input-question-prompt.d.ts +33 -0
  20. package/dist/components/chat-ui/components/chat-input.d.ts +4 -1
  21. package/dist/components/chat-ui/components/chat-panel-sticky-user-message.d.ts +9 -0
  22. package/dist/components/chat-ui/components/chat-panel.d.ts +4 -1
  23. package/dist/components/chat-ui/components/message-parts-renderer.d.ts +1 -0
  24. package/dist/components/chat-ui/components/timeline-tool-blocks.d.ts +14 -0
  25. package/dist/components/chat-ui/components/timeline.d.ts +22 -0
  26. package/dist/components/chat-ui/components/tool-invocation-timeline.d.ts +2 -1
  27. package/dist/components/chat-ui/index.d.ts +1 -0
  28. package/dist/components/chat-ui/mocks/library/index.d.ts +10 -0
  29. package/dist/components/chat-ui/tool-rendering/build-timeline.d.ts +2 -2
  30. package/dist/components/chat-ui/tool-rendering/default-renderers.d.ts +2 -0
  31. package/dist/components/chat-ui/tool-rendering/question-renderer.d.ts +10 -0
  32. package/dist/components/chat-ui/tool-rendering/shared.d.ts +1 -1
  33. package/dist/components/chat-ui/tool-rendering/todowrite-renderer.d.ts +10 -0
  34. package/dist/components/chat-ui/utils/get-icon.d.ts +2 -0
  35. package/dist/components/chat-ui/utils/tool-name.d.ts +2 -0
  36. package/dist/components/content-placeholder.d.ts +1 -0
  37. package/dist/components/header.d.ts +7 -0
  38. package/dist/components/list-row/list-row-actions.d.ts +10 -0
  39. package/dist/components/list-row/list-row.d.ts +2 -0
  40. package/dist/components/list-row/list-row.types.d.ts +85 -0
  41. package/dist/components/{sidebar-tree → list-row}/searchable-action-menu.d.ts +2 -2
  42. package/dist/components/panel-header.constants.d.ts +1 -1
  43. package/dist/components/radio.d.ts +8 -0
  44. package/dist/components/resource-context-menu.d.ts +1 -2
  45. package/dist/components/sidebar/sidebar-project-menu.d.ts +0 -3
  46. package/dist/components/sidebar/sidebar.store.d.ts +2 -0
  47. package/dist/components/sidebar/sidebar.types.d.ts +10 -4
  48. package/dist/components/tickets/ticket-board.d.ts +6 -2
  49. package/dist/components/tickets/ticket-list.d.ts +3 -0
  50. package/dist/components/tickets/tickets-workspace.d.ts +3 -0
  51. package/dist/components/tickets/workspace-helpers.d.ts +6 -1
  52. package/dist/components/tree-list/tree-list.d.ts +18 -0
  53. package/dist/components/tree-list/tree-list.types.d.ts +29 -0
  54. package/dist/index.d.ts +10 -5
  55. package/dist/index.js +2621 -2459
  56. package/dist/index.js.map +1 -1
  57. package/dist/radio-C42qncrD.js +236 -0
  58. package/dist/radio-C42qncrD.js.map +1 -0
  59. package/dist/{rich-message-BVRk9BSD.js → rich-message-DeJwzVeV.js} +364 -355
  60. package/dist/rich-message-DeJwzVeV.js.map +1 -0
  61. package/dist/rich-text.js +2 -2
  62. package/dist/style.css +1 -1
  63. package/dist/theme/custom/index.d.ts +3 -0
  64. package/dist/theme/custom/monokai.json.d.ts +80 -0
  65. package/dist/theme/index.d.ts +1 -0
  66. package/dist/theme/primitives/colors.d.ts +6 -0
  67. package/dist/theme/recipes/button.d.ts +34 -0
  68. package/dist/theme/recipes/kbd.d.ts +41 -0
  69. package/dist/theme/tokens/colors.d.ts +18 -6
  70. package/dist/{theme-D0VvFB1Y.js → theme-Dq4r3aRE.js} +247 -135
  71. package/dist/theme-Dq4r3aRE.js.map +1 -0
  72. package/dist/theme.js +4 -2
  73. package/dist/utils/apply-theme-preference.d.ts +20 -2
  74. package/dist/utils/theme-preference.d.ts +4 -2
  75. package/package.json +1 -2
  76. package/dist/components/chat-ui/tool-rendering/todo-write-renderer.d.ts +0 -2
  77. package/dist/components/drawer-inline.d.ts +0 -24
  78. package/dist/components/file-selector.d.ts +0 -12
  79. package/dist/components/menu-item.d.ts +0 -42
  80. package/dist/components/pstdio-logo.d.ts +0 -2
  81. package/dist/components/sidebar-tree/sidebar-node-content.d.ts +0 -9
  82. package/dist/components/sidebar-tree/sidebar-tree.d.ts +0 -13
  83. package/dist/components/sidebar-tree/sidebar-tree.types.d.ts +0 -68
  84. package/dist/empty-state-yGspgiPl.js +0 -185
  85. package/dist/empty-state-yGspgiPl.js.map +0 -1
  86. package/dist/rich-message-BVRk9BSD.js.map +0 -1
  87. package/dist/theme-D0VvFB1Y.js.map +0 -1
@@ -1,7 +1,11 @@
1
- import { defineSlotRecipe as l, defineRecipe as a, defineLayerStyles as r, defineTextStyles as s, defineConfig as t, createSystem as i, defaultConfig as u } from "@chakra-ui/react";
2
- import { alertAnatomy as n, dialogAnatomy as c, drawerAnatomy as d, fieldsetAnatomy as b, menuAnatomy as v, popoverAnatomy as g, tooltipAnatomy as p } from "@chakra-ui/react/anatomy";
3
- import { progressCircleSlotRecipe as o } from "@chakra-ui/react/theme";
4
- const m = {
1
+ import { defineSlotRecipe as l, defineRecipe as o, defineLayerStyles as r, defineTextStyles as s, defineConfig as t, createSystem as c, defaultConfig as i } from "@chakra-ui/react";
2
+ import { alertAnatomy as n, dialogAnatomy as u, drawerAnatomy as d, fieldsetAnatomy as b, menuAnatomy as g, popoverAnatomy as v, tooltipAnatomy as m } from "@chakra-ui/react/anatomy";
3
+ import { progressCircleSlotRecipe as a } from "@chakra-ui/react/theme";
4
+ const p = "monokai", F = "dark", h = { "colors.fg": "#F8F8F2", "colors.fg.muted": "#75715E", "colors.fg.subtle": "#A59F85", "colors.fg.inverted": "#272822", "colors.fg.blue-dark": "#66D9EF", "colors.bg": "#272822", "colors.bg.muted": "#34352E", "colors.bg.subtle": "#1F201B", "colors.bg.hover": "#3E3D32", "colors.bg.active": "#49483E", "colors.bg.code": "#1F201B", "colors.bg.emphasized": "#49483E", "colors.bg.inverted": "#F8F8F2", "colors.bg.panel": "#1F201B", "colors.bg.dark": "#1F201B", "colors.bg.button.primary.default": "#E6DB74", "colors.bg.button.primary.hover": "#F4E98A", "colors.bg.button.primary.pressed": "#CFC25F", "colors.bg.menu-item.hover": "#3E3D32", "colors.bg.menu-item.focus": "#3E3D32", "colors.bg.menu-item.selected": "#49483E", "colors.bg.accent-primary.default": "#E6DB74", "colors.bg.accent-primary.hover": "#F4E98A", "colors.bg.accent-primary.pressed": "#CFC25F", "colors.bg.accent-primary.very-light": "#3B3A2B", "colors.bg.accent-primary.light": "#494531", "colors.bg.accent-primary.medium": "#E6DB74", "colors.bg.accent-primary.dark": "#F4E98A", "colors.bg.accent-secondary.grey-dark": "#272822", "colors.bg.accent-secondary.grey-light": "#34352E", "colors.bg.accent-secondary.red-very-light": "#3A1F1F", "colors.bg.accent-secondary.red-light": "#4A2424", "colors.bg.accent-secondary.pink-light": "#4A2039", "colors.bg.accent-secondary.pink-medium": "#F92672", "colors.bg.accent-secondary.blue-very-light": "#243A3D", "colors.bg.accent-secondary.blue-light": "#26464A", "colors.bg.accent-secondary.blue-medium": "#66D9EF", "colors.bg.accent-secondary.blue-dark": "#66D9EF", "colors.bg.accent-secondary.cyan-light": "#26464A", "colors.bg.accent-secondary.green-light": "#33401F", "colors.bg.accent-secondary.yellow-light": "#494531", "colors.bg.accent-secondary.yellow-medium": "#E6DB74", "colors.bg.accent-secondary.yellow-dark": "#F4E98A", "colors.bg.accent-secondary.sand-light": "#3E3D32", "colors.border": "#5B594A", "colors.border.muted": "#49483E", "colors.border.subtle": "#3E3D32", "colors.border.inverted": "#CFCFC2", "colors.border.accent-light": "#66D9EF", "colors.border.accent": "#66D9EF", "colors.blue.border": "#66D9EF", "colors.orange.contrast": "#272822", "colors.orange.fg": "#FD971F", "colors.orange.subtle": "#493522", "colors.orange.muted": "#5A3C20", "colors.orange.emphasized": "#7A4D1D", "colors.orange.solid": "#FD971F", "colors.orange.focusRing": "#FD971F", "colors.orange.border": "#FD971F", "colors.vis.text.primary": "#F8F8F2", "colors.vis.text.secondary": "#CFCFC2", "colors.vis.grid": "#49483E", "colors.vis.axis": "#A59F85", "colors.vis.categorical.1": "#66D9EF", "colors.vis.categorical.2": "#FD971F", "colors.vis.categorical.3": "#AE81FF", "colors.vis.categorical.4": "#F92672", "colors.vis.categorical.5": "#E6DB74", "colors.vis.categorical.6": "#A6E22E", "colors.vis.categorical.7": "#75715E", "colors.text.selectable.primary": "#272822" }, k = {
5
+ id: p,
6
+ mode: F,
7
+ tokens: h
8
+ }, x = k, fe = [x], y = {
5
9
  "*::selection": {
6
10
  bg: {
7
11
  base: "bg.accent-secondary.blue-medium",
@@ -59,7 +63,7 @@ const m = {
59
63
  fontSize: "1.5rem"
60
64
  }
61
65
  }
62
- }, h = {
66
+ }, f = {
63
67
  DEFAULT: {
64
68
  value: "#0A0D15"
65
69
  },
@@ -81,6 +85,9 @@ const m = {
81
85
  400: {
82
86
  value: "#C5C5C7"
83
87
  },
88
+ 450: {
89
+ value: "#9DA0A6"
90
+ },
84
91
  500: {
85
92
  value: "#797D83"
86
93
  },
@@ -105,7 +112,7 @@ const m = {
105
112
  1e3: {
106
113
  value: "#000000"
107
114
  }
108
- }, F = {
115
+ }, _ = {
109
116
  DEFAULT: {
110
117
  value: "#5098FF"
111
118
  },
@@ -139,7 +146,7 @@ const m = {
139
146
  900: {
140
147
  value: "#002862"
141
148
  }
142
- }, k = {
149
+ }, E = {
143
150
  DEFAULT: {
144
151
  value: "#3A4BE4"
145
152
  },
@@ -176,7 +183,7 @@ const m = {
176
183
  900: {
177
184
  value: "#0A125A"
178
185
  }
179
- }, x = {
186
+ }, C = {
180
187
  DEFAULT: {
181
188
  value: "#E054EC"
182
189
  },
@@ -213,7 +220,7 @@ const m = {
213
220
  900: {
214
221
  value: "#520659"
215
222
  }
216
- }, f = {
223
+ }, S = {
217
224
  DEFAULT: {
218
225
  value: "#FBD8CE"
219
226
  },
@@ -247,7 +254,7 @@ const m = {
247
254
  900: {
248
255
  value: "#522923"
249
256
  }
250
- }, y = {
257
+ }, D = {
251
258
  DEFAULT: {
252
259
  value: "#FF3232"
253
260
  },
@@ -281,7 +288,7 @@ const m = {
281
288
  900: {
282
289
  value: "#580707"
283
290
  }
284
- }, _ = {
291
+ }, A = {
285
292
  DEFAULT: {
286
293
  value: "#F78C25"
287
294
  },
@@ -315,7 +322,7 @@ const m = {
315
322
  900: {
316
323
  value: "#552107"
317
324
  }
318
- }, E = {
325
+ }, w = {
319
326
  DEFAULT: {
320
327
  value: "#FFD643"
321
328
  },
@@ -355,7 +362,7 @@ const m = {
355
362
  900: {
356
363
  value: "#644E00"
357
364
  }
358
- }, C = {
365
+ }, B = {
359
366
  DEFAULT: {
360
367
  value: "#2DD665"
361
368
  },
@@ -389,7 +396,7 @@ const m = {
389
396
  900: {
390
397
  value: "#003110"
391
398
  }
392
- }, S = {
399
+ }, z = {
393
400
  DEFAULT: {
394
401
  value: "#3EECC4"
395
402
  },
@@ -423,7 +430,7 @@ const m = {
423
430
  900: {
424
431
  value: "#024F3D"
425
432
  }
426
- }, w = {
433
+ }, R = {
427
434
  DEFAULT: {
428
435
  value: "#5CDCFF"
429
436
  },
@@ -457,7 +464,7 @@ const m = {
457
464
  900: {
458
465
  value: "#005B73"
459
466
  }
460
- }, D = {
467
+ }, W = {
461
468
  DEFAULT: {
462
469
  value: "#8B47FF"
463
470
  },
@@ -491,7 +498,7 @@ const m = {
491
498
  900: {
492
499
  value: "#1E0050"
493
500
  }
494
- }, A = {
501
+ }, L = {
495
502
  DEFAULT: {
496
503
  value: "#F4F2EC"
497
504
  },
@@ -525,7 +532,7 @@ const m = {
525
532
  900: {
526
533
  value: "#E8CECE"
527
534
  }
528
- }, z = {
535
+ }, H = {
529
536
  50: {
530
537
  value: "#FCFDFC"
531
538
  },
@@ -568,30 +575,30 @@ const m = {
568
575
  950: {
569
576
  value: "#10141B"
570
577
  }
571
- }, B = {
578
+ }, T = {
572
579
  100: {
573
580
  value: "#D3ECEE"
574
581
  },
575
582
  200: {
576
583
  value: "#B3DEE2"
577
584
  }
578
- }, L = {
579
- sand: A,
580
- blacks: h,
581
- blue: F,
582
- sapphire: k,
583
- pink: x,
584
- peach: f,
585
- red: y,
586
- orange: _,
587
- yellow: E,
588
- green: C,
589
- teal: S,
590
- cyan: w,
591
- purple: D,
592
- neutral: z,
593
- mint: B
594
- }, R = {
585
+ }, U = {
586
+ sand: L,
587
+ blacks: f,
588
+ blue: _,
589
+ sapphire: E,
590
+ pink: C,
591
+ peach: S,
592
+ red: D,
593
+ orange: A,
594
+ yellow: w,
595
+ green: B,
596
+ teal: z,
597
+ cyan: R,
598
+ purple: W,
599
+ neutral: H,
600
+ mint: T
601
+ }, M = {
595
602
  display: {
596
603
  value: "'Playfair Display', serif"
597
604
  },
@@ -607,7 +614,7 @@ const m = {
607
614
  body: {
608
615
  value: "Inter, sans-serif"
609
616
  }
610
- }, W = {
617
+ }, X = {
611
618
  xs: {
612
619
  value: "0.625rem"
613
620
  },
@@ -672,7 +679,7 @@ const m = {
672
679
  value: "1.25rem"
673
680
  }
674
681
  // 20px
675
- }, H = {
682
+ }, V = {
676
683
  regular: {
677
684
  value: 400
678
685
  },
@@ -712,7 +719,7 @@ const m = {
712
719
  900: "4.5rem",
713
720
  // 96px
714
721
  1600: "8rem"
715
- }, T = {
722
+ }, P = {
716
723
  none: {
717
724
  value: "0"
718
725
  },
@@ -752,7 +759,7 @@ const m = {
752
759
  "5xl": {
753
760
  value: e[1600]
754
761
  }
755
- }, U = {
762
+ }, I = {
756
763
  none: {
757
764
  value: "0"
758
765
  },
@@ -777,7 +784,7 @@ const m = {
777
784
  full: {
778
785
  value: "100%"
779
786
  }
780
- }, M = l({
787
+ }, O = l({
781
788
  slots: n.keys(),
782
789
  base: {
783
790
  root: {
@@ -785,7 +792,7 @@ const m = {
785
792
  pb: "xs"
786
793
  }
787
794
  }
788
- }), V = a({
795
+ }), Y = o({
789
796
  base: {
790
797
  borderRadius: "sm",
791
798
  transition: "all 0.1s ease-in-out",
@@ -895,6 +902,9 @@ const m = {
895
902
  _active: {
896
903
  bg: "bg.active"
897
904
  },
905
+ _expanded: {
906
+ bg: "bg.active"
907
+ },
898
908
  _disabled: {
899
909
  opacity: 1,
900
910
  color: "fg.subtle",
@@ -911,15 +921,46 @@ const m = {
911
921
  _active: {
912
922
  bg: "bg.active"
913
923
  },
924
+ _expanded: {
925
+ bg: "bg.active"
926
+ },
914
927
  _disabled: {
915
928
  bg: "transparent",
916
929
  _hover: {
917
930
  bg: "transparent"
918
931
  }
919
932
  }
933
+ },
934
+ subtle: {
935
+ color: "fg",
936
+ bg: "bg.subtle",
937
+ border: "none",
938
+ _hover: {
939
+ bg: "bg.hover"
940
+ },
941
+ _active: {
942
+ bg: "bg.active"
943
+ },
944
+ _expanded: {
945
+ bg: "bg.active"
946
+ },
947
+ _disabled: {
948
+ opacity: 1,
949
+ color: "fg.subtle",
950
+ bg: "bg.muted",
951
+ _hover: {
952
+ bg: "bg.muted"
953
+ }
954
+ }
920
955
  }
921
956
  },
922
957
  size: {
958
+ xs: {
959
+ _icon: {
960
+ width: "0.875rem",
961
+ height: "0.875rem"
962
+ }
963
+ },
923
964
  "2xl": {
924
965
  px: "1.5rem",
925
966
  h: "3.5rem",
@@ -944,18 +985,18 @@ const m = {
944
985
  size: "md",
945
986
  variant: "outline"
946
987
  }
947
- }), X = l({
948
- slots: c.keys(),
988
+ }), $ = l({
989
+ slots: u.keys(),
949
990
  base: {
950
991
  content: {
951
992
  bg: "bg"
952
993
  }
953
994
  }
954
- }), I = a({
995
+ }), j = o({
955
996
  base: {
956
997
  borderColor: "border"
957
998
  }
958
- }), P = l({
999
+ }), q = l({
959
1000
  slots: d.keys(),
960
1001
  base: {
961
1002
  header: {
@@ -967,7 +1008,7 @@ const m = {
967
1008
  bg: "bg"
968
1009
  }
969
1010
  }
970
- }), O = l({
1011
+ }), G = l({
971
1012
  slots: ["preview", "input", "textarea"],
972
1013
  base: {
973
1014
  preview: {
@@ -1016,18 +1057,17 @@ const m = {
1016
1057
  }
1017
1058
  }
1018
1059
  }
1019
- }), Y = l({
1060
+ }), J = l({
1020
1061
  slots: b.keys(),
1021
1062
  base: {
1022
1063
  legend: {
1023
1064
  mb: "2xs"
1024
1065
  }
1025
1066
  }
1026
- }), $ = a({
1067
+ }), K = o({
1027
1068
  base: {
1028
1069
  px: "sm",
1029
1070
  borderRadius: "sm",
1030
- border: "1px solid",
1031
1071
  transition: "border-color 0.2s ease-in-out",
1032
1072
  bg: "bg",
1033
1073
  color: "fg",
@@ -1042,7 +1082,8 @@ const m = {
1042
1082
  borderColor: "blue.border"
1043
1083
  },
1044
1084
  _focusVisible: {
1045
- borderColor: "blue.border"
1085
+ borderColor: "blue.border",
1086
+ outline: "none"
1046
1087
  },
1047
1088
  _placeholder: {
1048
1089
  color: "fg.subtle"
@@ -1055,8 +1096,71 @@ const m = {
1055
1096
  }
1056
1097
  }
1057
1098
  }
1058
- }), q = l({
1059
- slots: v.keys(),
1099
+ }), N = o({
1100
+ base: {
1101
+ display: "inline-flex",
1102
+ alignItems: "center",
1103
+ justifyContent: "center",
1104
+ flexShrink: "0",
1105
+ minW: "1.25rem",
1106
+ px: "1",
1107
+ borderRadius: "0",
1108
+ borderWidth: "1px",
1109
+ borderStyle: "solid",
1110
+ fontFamily: "mono",
1111
+ fontWeight: "medium",
1112
+ lineHeight: "1",
1113
+ userSelect: "none",
1114
+ whiteSpace: "nowrap",
1115
+ wordSpacing: "normal"
1116
+ },
1117
+ variants: {
1118
+ variant: {
1119
+ raised: {
1120
+ color: "fg.muted",
1121
+ bg: "bg.subtle",
1122
+ borderColor: "border.muted",
1123
+ borderBottomWidth: "2px"
1124
+ },
1125
+ outline: {
1126
+ color: "fg.muted",
1127
+ bg: "transparent",
1128
+ borderColor: "border.muted"
1129
+ },
1130
+ subtle: {
1131
+ color: "fg",
1132
+ bg: "bg.muted",
1133
+ borderColor: "border.subtle"
1134
+ },
1135
+ plain: {
1136
+ color: "fg.muted",
1137
+ bg: "transparent",
1138
+ borderColor: "transparent",
1139
+ minW: "auto",
1140
+ px: "0"
1141
+ }
1142
+ },
1143
+ size: {
1144
+ sm: {
1145
+ height: "1rem",
1146
+ textStyle: "label/XS/medium"
1147
+ },
1148
+ md: {
1149
+ height: "1.25rem",
1150
+ textStyle: "label/XS/medium"
1151
+ },
1152
+ lg: {
1153
+ height: "1.5rem",
1154
+ textStyle: "label/S/medium"
1155
+ }
1156
+ }
1157
+ },
1158
+ defaultVariants: {
1159
+ size: "md",
1160
+ variant: "raised"
1161
+ }
1162
+ }), Q = l({
1163
+ slots: g.keys(),
1060
1164
  base: {
1061
1165
  itemGroupLabel: {
1062
1166
  ml: "{2xs}",
@@ -1068,24 +1172,21 @@ const m = {
1068
1172
  bg: "bg.menu-item.default",
1069
1173
  color: "fg.menu-item.default",
1070
1174
  textStyle: "label/M/regular",
1071
- px: "0.5rem",
1072
- h: "2.25rem",
1073
- _hover: {
1074
- bg: "bg.menu-item.hover"
1075
- },
1076
- _focus: {
1077
- bg: "bg.menu-item.focus"
1078
- },
1079
- _active: {
1080
- bg: "bg.menu-item.selected"
1081
- }
1175
+ px: "0",
1176
+ h: "auto"
1177
+ },
1178
+ separator: {
1179
+ my: "2xs",
1180
+ borderColor: "border.muted"
1082
1181
  },
1083
1182
  content: {
1084
1183
  display: "flex",
1085
1184
  flexDirection: "column",
1086
- gap: "2xs",
1185
+ gap: "0",
1087
1186
  borderRadius: "sm",
1088
- py: "xs",
1187
+ p: "0",
1188
+ px: "0",
1189
+ py: "0",
1089
1190
  bg: "bg",
1090
1191
  borderWidth: "1px",
1091
1192
  borderStyle: "solid",
@@ -1095,8 +1196,8 @@ const m = {
1095
1196
  textStyle: "label/M/regular"
1096
1197
  }
1097
1198
  }
1098
- }), G = l({
1099
- slots: g.keys(),
1199
+ }), Z = l({
1200
+ slots: v.keys(),
1100
1201
  base: {
1101
1202
  positioner: {
1102
1203
  _focus: {
@@ -1114,9 +1215,11 @@ const m = {
1114
1215
  content: {
1115
1216
  gap: "8px",
1116
1217
  py: "xs",
1117
- borderRadius: "12px",
1218
+ borderRadius: "xs",
1118
1219
  bg: "bg",
1119
- borderColor: "border",
1220
+ borderWidth: "1px",
1221
+ borderStyle: "solid",
1222
+ borderColor: "border.muted",
1120
1223
  _focus: {
1121
1224
  boxShadow: "none !important"
1122
1225
  }
@@ -1147,12 +1250,12 @@ const m = {
1147
1250
  }
1148
1251
  }
1149
1252
  }
1150
- }), j = o.variants?.size ?? {}, J = {
1151
- ...o,
1253
+ }), ee = a.variants?.size ?? {}, le = {
1254
+ ...a,
1152
1255
  variants: {
1153
- ...o.variants,
1256
+ ...a.variants,
1154
1257
  size: {
1155
- ...j,
1258
+ ...ee,
1156
1259
  "2xs": {
1157
1260
  circle: {
1158
1261
  "--size": "14px",
@@ -1164,12 +1267,12 @@ const m = {
1164
1267
  }
1165
1268
  }
1166
1269
  }
1167
- }, K = a({
1270
+ }, oe = o({
1168
1271
  base: {
1169
1272
  "--start-color": "fg",
1170
1273
  "--end-color": "fg.muted"
1171
1274
  }
1172
- }), N = a({
1275
+ }), ae = o({
1173
1276
  base: {
1174
1277
  paddingX: "sm",
1175
1278
  paddingY: "xs",
@@ -1195,8 +1298,8 @@ const m = {
1195
1298
  color: "fg.subtle"
1196
1299
  }
1197
1300
  }
1198
- }), Q = l({
1199
- slots: p.keys(),
1301
+ }), re = l({
1302
+ slots: m.keys(),
1200
1303
  base: {
1201
1304
  content: {
1202
1305
  bg: "bg.inverted",
@@ -1206,7 +1309,7 @@ const m = {
1206
1309
  bg: "bg.inverted"
1207
1310
  }
1208
1311
  }
1209
- }), Z = {
1312
+ }), se = {
1210
1313
  DEFAULT: {
1211
1314
  value: {
1212
1315
  base: "1px solid {colors.blacks.400}",
@@ -1243,7 +1346,7 @@ const m = {
1243
1346
  _dark: "1px solid {colors.blue.900}"
1244
1347
  }
1245
1348
  }
1246
- }, ee = {
1349
+ }, te = {
1247
1350
  DEFAULT: {
1248
1351
  value: {
1249
1352
  base: "{colors.blacks.800}",
@@ -1252,7 +1355,7 @@ const m = {
1252
1355
  },
1253
1356
  muted: {
1254
1357
  value: {
1255
- base: "{colors.blacks.500}",
1358
+ base: "{colors.blacks.450}",
1256
1359
  _dark: "{colors.blacks.500}"
1257
1360
  }
1258
1361
  },
@@ -1327,7 +1430,7 @@ const m = {
1327
1430
  value: "{colors.fg.muted}"
1328
1431
  }
1329
1432
  }
1330
- }, le = {
1433
+ }, ce = {
1331
1434
  DEFAULT: {
1332
1435
  value: {
1333
1436
  base: "{colors.blacks.50}",
@@ -1424,13 +1527,19 @@ const m = {
1424
1527
  value: "{colors.bg}"
1425
1528
  },
1426
1529
  hover: {
1427
- value: "{colors.bg.hover}"
1530
+ value: {
1531
+ base: "{colors.bg.muted}"
1532
+ }
1428
1533
  },
1429
1534
  focus: {
1430
- value: "{colors.bg.hover}"
1535
+ value: {
1536
+ base: "{colors.bg.muted}"
1537
+ }
1431
1538
  },
1432
1539
  selected: {
1433
- value: "{colors.bg.active}"
1540
+ value: {
1541
+ base: "{colors.bg.active}"
1542
+ }
1434
1543
  }
1435
1544
  },
1436
1545
  display: {
@@ -1583,7 +1692,7 @@ const m = {
1583
1692
  }
1584
1693
  }
1585
1694
  }
1586
- }, ae = {
1695
+ }, ie = {
1587
1696
  DEFAULT: {
1588
1697
  value: {
1589
1698
  base: "{colors.neutral.500}",
@@ -1592,13 +1701,13 @@ const m = {
1592
1701
  },
1593
1702
  muted: {
1594
1703
  value: {
1595
- base: "{colors.neutral.400}",
1704
+ base: "{colors.neutral.500}",
1596
1705
  _dark: "{colors.neutral.700}"
1597
1706
  }
1598
1707
  },
1599
1708
  subtle: {
1600
1709
  value: {
1601
- base: "{colors.neutral.300}",
1710
+ base: "{colors.neutral.400}",
1602
1711
  _dark: "{colors.neutral.750}"
1603
1712
  }
1604
1713
  },
@@ -1625,14 +1734,14 @@ const m = {
1625
1734
  value: "{colors.border.muted}"
1626
1735
  }
1627
1736
  }
1628
- }, oe = {
1737
+ }, ne = {
1629
1738
  border: {
1630
1739
  value: {
1631
1740
  _light: "{colors.mint.200}",
1632
1741
  _dark: "{colors.mint.200}"
1633
1742
  }
1634
1743
  }
1635
- }, re = {
1744
+ }, ue = {
1636
1745
  contrast: {
1637
1746
  value: {
1638
1747
  _light: "black",
@@ -1681,7 +1790,7 @@ const m = {
1681
1790
  _dark: "{colors.orange.500}"
1682
1791
  }
1683
1792
  }
1684
- }, se = {
1793
+ }, de = {
1685
1794
  text: {
1686
1795
  primary: {
1687
1796
  value: {
@@ -1842,7 +1951,7 @@ const m = {
1842
1951
  }
1843
1952
  }
1844
1953
  }
1845
- }, te = {
1954
+ }, be = {
1846
1955
  selectable: {
1847
1956
  primary: {
1848
1957
  value: {
@@ -1851,15 +1960,15 @@ const m = {
1851
1960
  }
1852
1961
  }
1853
1962
  }
1854
- }, ie = {
1855
- fg: ee,
1856
- bg: le,
1857
- border: ae,
1858
- blue: oe,
1859
- orange: re,
1860
- vis: se,
1861
- text: te
1862
- }, ue = r({
1963
+ }, ge = {
1964
+ fg: te,
1965
+ bg: ce,
1966
+ border: ie,
1967
+ blue: ne,
1968
+ orange: ue,
1969
+ vis: de,
1970
+ text: be
1971
+ }, ve = r({
1863
1972
  modal: {
1864
1973
  value: {
1865
1974
  paddingInline: "xs",
@@ -1871,7 +1980,7 @@ const m = {
1871
1980
  boxShadow: "mid"
1872
1981
  }
1873
1982
  }
1874
- }), ne = {
1983
+ }), me = {
1875
1984
  "low-light": {
1876
1985
  value: "0px 2px 4px 0px rgba(0, 0, 0, 0.10)"
1877
1986
  },
@@ -1902,7 +2011,7 @@ const m = {
1902
2011
  "desktop-icon-label-text-selected-dark": {
1903
2012
  value: "0px 2px 4px rgba(37, 99, 235, 0.75)"
1904
2013
  }
1905
- }, ce = {
2014
+ }, pe = {
1906
2015
  low: {
1907
2016
  value: {
1908
2017
  base: "{shadows.low-light}",
@@ -1933,7 +2042,7 @@ const m = {
1933
2042
  _dark: "{shadows.desktop-icon-label-text-selected-dark}"
1934
2043
  }
1935
2044
  }
1936
- }, de = s({
2045
+ }, Fe = s({
1937
2046
  brand: {
1938
2047
  value: {
1939
2048
  fontFamily: "brand",
@@ -2166,50 +2275,53 @@ const m = {
2166
2275
  letterSpacing: "0.14px"
2167
2276
  }
2168
2277
  }
2169
- }), be = t({
2170
- globalCss: m,
2278
+ }), he = t({
2279
+ globalCss: y,
2171
2280
  theme: {
2172
2281
  breakpoints: {
2173
2282
  "3xl": "2560px",
2174
2283
  "4xl": "3840px"
2175
2284
  },
2176
- textStyles: de,
2177
- layerStyles: ue,
2285
+ textStyles: Fe,
2286
+ layerStyles: ve,
2178
2287
  recipes: {
2179
- button: V,
2180
- divider: I,
2181
- input: $,
2182
- skeleton: K,
2183
- textarea: N
2288
+ button: Y,
2289
+ divider: j,
2290
+ input: K,
2291
+ kbd: N,
2292
+ skeleton: oe,
2293
+ textarea: ae
2184
2294
  },
2185
2295
  tokens: {
2186
- colors: L,
2187
- fonts: R,
2188
- fontSizes: W,
2189
- fontWeights: H,
2190
- radii: U,
2191
- shadows: ne,
2192
- spacing: T
2296
+ colors: U,
2297
+ fonts: M,
2298
+ fontSizes: X,
2299
+ fontWeights: V,
2300
+ radii: I,
2301
+ shadows: me,
2302
+ spacing: P
2193
2303
  },
2194
2304
  semanticTokens: {
2195
- colors: ie,
2196
- borders: Z,
2197
- shadows: ce
2305
+ colors: ge,
2306
+ borders: se,
2307
+ shadows: pe
2198
2308
  },
2199
2309
  slotRecipes: {
2200
- alert: M,
2201
- drawer: P,
2202
- tooltip: Q,
2203
- popover: G,
2204
- menu: q,
2205
- editable: O,
2206
- form: Y,
2207
- dialog: X,
2208
- progressCircle: J
2310
+ alert: O,
2311
+ drawer: q,
2312
+ tooltip: re,
2313
+ popover: Z,
2314
+ menu: Q,
2315
+ editable: G,
2316
+ form: J,
2317
+ dialog: $,
2318
+ progressCircle: le
2209
2319
  }
2210
2320
  }
2211
- }), me = i(u, be);
2321
+ }), _e = c(i, he);
2212
2322
  export {
2213
- me as t
2323
+ fe as c,
2324
+ x as m,
2325
+ _e as t
2214
2326
  };
2215
- //# sourceMappingURL=theme-D0VvFB1Y.js.map
2327
+ //# sourceMappingURL=theme-Dq4r3aRE.js.map