@pstdio/ui 0.5.1 → 0.6.0

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 (92) hide show
  1. package/dist/{MermaidComponent-x3aKzNXm.js → MermaidComponent-D7Baqkwx.js} +2 -2
  2. package/dist/{MermaidComponent-x3aKzNXm.js.map → MermaidComponent-D7Baqkwx.js.map} +1 -1
  3. package/dist/chat-ui.js +744 -726
  4. package/dist/chat-ui.js.map +1 -1
  5. package/dist/components/activity/activity-avatar.d.ts +9 -0
  6. package/dist/components/activity/activity-comment.d.ts +19 -0
  7. package/dist/components/activity/activity-composer.d.ts +18 -0
  8. package/dist/components/activity/activity-event.d.ts +12 -0
  9. package/dist/components/activity/activity-root.d.ts +15 -0
  10. package/dist/components/activity/activity-timeline.d.ts +6 -0
  11. package/dist/components/activity/activity.types.d.ts +5 -0
  12. package/dist/components/activity/index.d.ts +25 -0
  13. package/dist/components/app-shell/app-shell.d.ts +1 -0
  14. package/dist/components/app-shell/command-palette.d.ts +16 -0
  15. package/dist/components/app-shell/file-tree.d.ts +7 -0
  16. package/dist/components/app-shell/mock-chat.d.ts +2 -0
  17. package/dist/components/app-shell/mock-data.d.ts +37 -0
  18. package/dist/components/app-shell/pages/project-list-page.d.ts +7 -0
  19. package/dist/components/app-shell/pages/sessions-page.d.ts +6 -0
  20. package/dist/components/app-shell/pages/settings-page.d.ts +5 -0
  21. package/dist/components/app-shell/pages/ticket-details-page.d.ts +7 -0
  22. package/dist/components/app-shell/pages/tickets-page.d.ts +7 -0
  23. package/dist/components/app-shell/pages/workspace-page.d.ts +1 -0
  24. package/dist/components/app-shell/resizable-panel.d.ts +13 -0
  25. package/dist/components/chat-ui/components/ai-conversation.d.ts +4 -4
  26. package/dist/components/chat-ui/components/ai-message.d.ts +7 -5
  27. package/dist/components/chat-ui/components/chat-input.d.ts +1 -0
  28. package/dist/components/chat-ui/components/chat-panel.d.ts +1 -0
  29. package/dist/components/chat-ui/mocks/library/index.d.ts +10 -0
  30. package/dist/components/chat-ui/tool-rendering/build-timeline.d.ts +2 -2
  31. package/dist/components/chat-ui/tool-rendering/shared.d.ts +1 -1
  32. package/dist/components/content-placeholder.d.ts +1 -0
  33. package/dist/components/header.d.ts +7 -0
  34. package/dist/components/list-row/list-row-actions.d.ts +10 -0
  35. package/dist/components/list-row/list-row.d.ts +2 -0
  36. package/dist/components/list-row/list-row.types.d.ts +85 -0
  37. package/dist/components/{sidebar-tree → list-row}/searchable-action-menu.d.ts +2 -2
  38. package/dist/components/panel-header.constants.d.ts +1 -1
  39. package/dist/components/resource-context-menu.d.ts +1 -2
  40. package/dist/components/rich-text/shared/editor-config.d.ts +1 -0
  41. package/dist/components/rich-text/shared/plugins/FloatingTextFormatToolbarPlugin/floating-toolbar-buttons.d.ts +16 -0
  42. package/dist/components/rich-text/shared/plugins/LinkEditorPlugin/commands.d.ts +2 -0
  43. package/dist/components/rich-text/shared/plugins/LinkEditorPlugin/index.d.ts +3 -0
  44. package/dist/components/rich-text/shared/plugins/LinkEditorPlugin/link-editor-content.d.ts +18 -0
  45. package/dist/components/rich-text/shared/plugins/LinkEditorPlugin/utils/link-edit-state.d.ts +1 -0
  46. package/dist/components/rich-text/shared/plugins/LinkEditorPlugin/utils/selection-link-url.d.ts +2 -0
  47. package/dist/components/rich-text/shared/plugins/LinkEditorPlugin/utils/setFloatingElemPos.d.ts +1 -1
  48. package/dist/components/rich-text/shared/transformers/markdown-transformers-test-utils.d.ts +3 -0
  49. package/dist/components/rich-text/shared/transformers/markdown-transformers.d.ts +1 -0
  50. package/dist/components/sidebar/sidebar-project-menu.d.ts +0 -3
  51. package/dist/components/sidebar/sidebar.store.d.ts +2 -0
  52. package/dist/components/sidebar/sidebar.types.d.ts +10 -4
  53. package/dist/components/tickets/tickets-workspace.d.ts +1 -0
  54. package/dist/components/tree-list/tree-list.d.ts +18 -0
  55. package/dist/components/tree-list/tree-list.types.d.ts +29 -0
  56. package/dist/index.d.ts +10 -5
  57. package/dist/index.js +2697 -2343
  58. package/dist/index.js.map +1 -1
  59. package/dist/{rich-message-CoXTd5kw.js → rich-message-33DPxuWJ.js} +502 -464
  60. package/dist/rich-message-33DPxuWJ.js.map +1 -0
  61. package/dist/rich-text.js +738 -414
  62. package/dist/rich-text.js.map +1 -1
  63. package/dist/style.css +1 -1
  64. package/dist/theme/custom/index.d.ts +3 -0
  65. package/dist/theme/custom/monokai.json.d.ts +80 -0
  66. package/dist/theme/index.d.ts +1 -0
  67. package/dist/theme/primitives/colors.d.ts +6 -0
  68. package/dist/theme/recipes/alert.d.ts +1 -1
  69. package/dist/theme/recipes/button.d.ts +28 -0
  70. package/dist/theme/recipes/dialog.d.ts +1 -1
  71. package/dist/theme/recipes/drawer.d.ts +1 -1
  72. package/dist/theme/recipes/kbd.d.ts +41 -0
  73. package/dist/theme/recipes/menu.d.ts +1 -1
  74. package/dist/theme/recipes/popover.d.ts +1 -1
  75. package/dist/theme/tokens/borders.d.ts +6 -24
  76. package/dist/theme/tokens/colors.d.ts +180 -168
  77. package/dist/theme/tokens/shadows.d.ts +5 -5
  78. package/dist/{theme-BLGUwVOD.js → theme-0SQvHr1t.js} +331 -243
  79. package/dist/theme-0SQvHr1t.js.map +1 -0
  80. package/dist/theme.js +4 -2
  81. package/dist/utils/apply-theme-preference.d.ts +20 -2
  82. package/dist/utils/theme-preference.d.ts +4 -2
  83. package/package.json +1 -2
  84. package/dist/components/drawer-inline.d.ts +0 -24
  85. package/dist/components/file-selector.d.ts +0 -12
  86. package/dist/components/menu-item.d.ts +0 -42
  87. package/dist/components/pstdio-logo.d.ts +0 -2
  88. package/dist/components/sidebar-tree/sidebar-node-content.d.ts +0 -9
  89. package/dist/components/sidebar-tree/sidebar-tree.d.ts +0 -13
  90. package/dist/components/sidebar-tree/sidebar-tree.types.d.ts +0 -68
  91. package/dist/rich-message-CoXTd5kw.js.map +0 -1
  92. package/dist/theme-BLGUwVOD.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 a, defineTextStyles as t, defineConfig as i, createSystem as s, defaultConfig as c } from "@chakra-ui/react";
2
+ import { alertAnatomy as n, dialogAnatomy as u, drawerAnatomy as d, fieldsetAnatomy as g, menuAnatomy as b, popoverAnatomy as v, tooltipAnatomy as m } from "@chakra-ui/react/anatomy";
3
+ import { progressCircleSlotRecipe as r } from "@chakra-ui/react/theme";
4
+ const h = "monokai", p = "dark", F = { "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" }, _ = {
5
+ id: h,
6
+ mode: p,
7
+ tokens: F
8
+ }, y = _, xe = [y], k = {
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
+ }, x = {
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
+ }, f = {
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: x,
588
+ blue: f,
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,12 +921,37 @@ 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: {
@@ -950,18 +985,18 @@ const m = {
950
985
  size: "md",
951
986
  variant: "outline"
952
987
  }
953
- }), X = l({
954
- slots: c.keys(),
988
+ }), $ = l({
989
+ slots: u.keys(),
955
990
  base: {
956
991
  content: {
957
992
  bg: "bg"
958
993
  }
959
994
  }
960
- }), I = a({
995
+ }), j = o({
961
996
  base: {
962
997
  borderColor: "border"
963
998
  }
964
- }), P = l({
999
+ }), q = l({
965
1000
  slots: d.keys(),
966
1001
  base: {
967
1002
  header: {
@@ -973,7 +1008,7 @@ const m = {
973
1008
  bg: "bg"
974
1009
  }
975
1010
  }
976
- }), O = l({
1011
+ }), G = l({
977
1012
  slots: ["preview", "input", "textarea"],
978
1013
  base: {
979
1014
  preview: {
@@ -1022,18 +1057,17 @@ const m = {
1022
1057
  }
1023
1058
  }
1024
1059
  }
1025
- }), Y = l({
1026
- slots: b.keys(),
1060
+ }), J = l({
1061
+ slots: g.keys(),
1027
1062
  base: {
1028
1063
  legend: {
1029
1064
  mb: "2xs"
1030
1065
  }
1031
1066
  }
1032
- }), $ = a({
1067
+ }), K = o({
1033
1068
  base: {
1034
1069
  px: "sm",
1035
1070
  borderRadius: "sm",
1036
- border: "1px solid",
1037
1071
  transition: "border-color 0.2s ease-in-out",
1038
1072
  bg: "bg",
1039
1073
  color: "fg",
@@ -1048,7 +1082,8 @@ const m = {
1048
1082
  borderColor: "blue.border"
1049
1083
  },
1050
1084
  _focusVisible: {
1051
- borderColor: "blue.border"
1085
+ borderColor: "blue.border",
1086
+ outline: "none"
1052
1087
  },
1053
1088
  _placeholder: {
1054
1089
  color: "fg.subtle"
@@ -1061,8 +1096,71 @@ const m = {
1061
1096
  }
1062
1097
  }
1063
1098
  }
1064
- }), q = l({
1065
- 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: b.keys(),
1066
1164
  base: {
1067
1165
  itemGroupLabel: {
1068
1166
  ml: "{2xs}",
@@ -1074,24 +1172,21 @@ const m = {
1074
1172
  bg: "bg.menu-item.default",
1075
1173
  color: "fg.menu-item.default",
1076
1174
  textStyle: "label/M/regular",
1077
- px: "0.5rem",
1078
- h: "2.25rem",
1079
- _hover: {
1080
- bg: "bg.menu-item.hover"
1081
- },
1082
- _focus: {
1083
- bg: "bg.menu-item.focus"
1084
- },
1085
- _active: {
1086
- bg: "bg.menu-item.selected"
1087
- }
1175
+ px: "0",
1176
+ h: "auto"
1177
+ },
1178
+ separator: {
1179
+ my: "2xs",
1180
+ borderColor: "border.muted"
1088
1181
  },
1089
1182
  content: {
1090
1183
  display: "flex",
1091
1184
  flexDirection: "column",
1092
- gap: "2xs",
1185
+ gap: "0",
1093
1186
  borderRadius: "sm",
1094
- py: "xs",
1187
+ p: "0",
1188
+ px: "0",
1189
+ py: "0",
1095
1190
  bg: "bg",
1096
1191
  borderWidth: "1px",
1097
1192
  borderStyle: "solid",
@@ -1101,8 +1196,8 @@ const m = {
1101
1196
  textStyle: "label/M/regular"
1102
1197
  }
1103
1198
  }
1104
- }), G = l({
1105
- slots: g.keys(),
1199
+ }), Z = l({
1200
+ slots: v.keys(),
1106
1201
  base: {
1107
1202
  positioner: {
1108
1203
  _focus: {
@@ -1120,9 +1215,11 @@ const m = {
1120
1215
  content: {
1121
1216
  gap: "8px",
1122
1217
  py: "xs",
1123
- borderRadius: "12px",
1218
+ borderRadius: "xs",
1124
1219
  bg: "bg",
1125
- borderColor: "border",
1220
+ borderWidth: "1px",
1221
+ borderStyle: "solid",
1222
+ borderColor: "border.muted",
1126
1223
  _focus: {
1127
1224
  boxShadow: "none !important"
1128
1225
  }
@@ -1153,12 +1250,12 @@ const m = {
1153
1250
  }
1154
1251
  }
1155
1252
  }
1156
- }), j = o.variants?.size ?? {}, J = {
1157
- ...o,
1253
+ }), ee = r.variants?.size ?? {}, le = {
1254
+ ...r,
1158
1255
  variants: {
1159
- ...o.variants,
1256
+ ...r.variants,
1160
1257
  size: {
1161
- ...j,
1258
+ ...ee,
1162
1259
  "2xs": {
1163
1260
  circle: {
1164
1261
  "--size": "14px",
@@ -1170,12 +1267,12 @@ const m = {
1170
1267
  }
1171
1268
  }
1172
1269
  }
1173
- }, K = a({
1270
+ }, oe = o({
1174
1271
  base: {
1175
1272
  "--start-color": "fg",
1176
1273
  "--end-color": "fg.muted"
1177
1274
  }
1178
- }), N = a({
1275
+ }), re = o({
1179
1276
  base: {
1180
1277
  paddingX: "sm",
1181
1278
  paddingY: "xs",
@@ -1201,8 +1298,8 @@ const m = {
1201
1298
  color: "fg.subtle"
1202
1299
  }
1203
1300
  }
1204
- }), Q = l({
1205
- slots: p.keys(),
1301
+ }), ae = l({
1302
+ slots: m.keys(),
1206
1303
  base: {
1207
1304
  content: {
1208
1305
  bg: "bg.inverted",
@@ -1212,103 +1309,85 @@ const m = {
1212
1309
  bg: "bg.inverted"
1213
1310
  }
1214
1311
  }
1215
- }), Z = {
1312
+ }), te = {
1216
1313
  DEFAULT: {
1217
- value: {
1218
- base: "1px solid {colors.blacks.400}",
1219
- _dark: "1px solid {colors.blacks.600}"
1220
- }
1314
+ value: "1px solid {colors.border}"
1221
1315
  },
1222
1316
  muted: {
1223
- value: {
1224
- base: "1px solid {colors.blacks.300}",
1225
- _dark: "1px solid {colors.blacks.700}"
1226
- }
1317
+ value: "1px solid {colors.border.muted}"
1227
1318
  },
1228
1319
  subtle: {
1229
- value: {
1230
- base: "1px solid {colors.blacks.300}",
1231
- _dark: "1px solid {colors.blacks.50}"
1232
- }
1320
+ value: "1px solid {colors.border.subtle}"
1233
1321
  },
1234
1322
  inverted: {
1235
- value: {
1236
- base: "1px solid {colors.blacks.400}",
1237
- _dark: "1px solid {colors.blacks.600}"
1238
- }
1323
+ value: "1px solid {colors.border.inverted}"
1239
1324
  },
1240
1325
  accent: {
1241
- value: {
1242
- base: "1px solid {colors.blue.700}",
1243
- _dark: "1px solid {colors.blue.200}"
1244
- }
1326
+ value: "1px solid {colors.border.accent}"
1245
1327
  },
1246
1328
  "accent-light": {
1247
- value: {
1248
- base: "1px solid {colors.blue.200}",
1249
- _dark: "1px solid {colors.blue.900}"
1250
- }
1329
+ value: "1px solid {colors.border.accent-light}"
1251
1330
  }
1252
- }, ee = {
1331
+ }, ie = {
1253
1332
  DEFAULT: {
1254
1333
  value: {
1255
- base: "{colors.blacks.800}",
1334
+ _light: "{colors.blacks.800}",
1256
1335
  _dark: "{colors.blacks.200}"
1257
1336
  }
1258
1337
  },
1259
1338
  muted: {
1260
1339
  value: {
1261
- base: "{colors.blacks.500}",
1340
+ _light: "{colors.blacks.450}",
1262
1341
  _dark: "{colors.blacks.500}"
1263
1342
  }
1264
1343
  },
1265
1344
  subtle: {
1266
1345
  value: {
1267
- base: "{colors.blacks.400}",
1346
+ _light: "{colors.blacks.400}",
1268
1347
  _dark: "{colors.blacks.600}"
1269
1348
  }
1270
1349
  },
1271
1350
  inverted: {
1272
1351
  value: {
1273
- base: "{colors.blacks.50}",
1352
+ _light: "{colors.blacks.50}",
1274
1353
  _dark: "{colors.blacks.800}"
1275
1354
  }
1276
1355
  },
1277
1356
  success: {
1278
1357
  value: {
1279
- base: "{colors.green.400}",
1358
+ _light: "{colors.green.400}",
1280
1359
  _dark: "{colors.green.400}"
1281
1360
  }
1282
1361
  },
1283
1362
  error: {
1284
1363
  value: {
1285
- base: "{colors.red.400}",
1364
+ _light: "{colors.red.400}",
1286
1365
  _dark: "{colors.red.400}"
1287
1366
  }
1288
1367
  },
1289
1368
  accent: {
1290
1369
  "pink-dark": {
1291
1370
  value: {
1292
- base: "{colors.pink.700}",
1371
+ _light: "{colors.pink.700}",
1293
1372
  _dark: "{colors.pink.50}"
1294
1373
  }
1295
1374
  }
1296
1375
  },
1297
1376
  "green-dark": {
1298
1377
  value: {
1299
- base: "{colors.green.700}",
1378
+ _light: "{colors.green.700}",
1300
1379
  _dark: "{colors.green.50}"
1301
1380
  }
1302
1381
  },
1303
1382
  "blue-dark": {
1304
1383
  value: {
1305
- base: "{colors.sapphire.700}",
1384
+ _light: "{colors.sapphire.700}",
1306
1385
  _dark: "{colors.sapphire.100}"
1307
1386
  }
1308
1387
  },
1309
1388
  "blue-very-dark": {
1310
1389
  value: {
1311
- base: "{colors.sapphire.900}",
1390
+ _light: "{colors.sapphire.900}",
1312
1391
  _dark: "{colors.sapphire.800}"
1313
1392
  }
1314
1393
  },
@@ -1316,7 +1395,7 @@ const m = {
1316
1395
  primary: {
1317
1396
  default: {
1318
1397
  value: {
1319
- base: "{colors.blacks.200}",
1398
+ _light: "{colors.blacks.200}",
1320
1399
  _dark: "{colors.blacks.200}"
1321
1400
  }
1322
1401
  },
@@ -1333,70 +1412,70 @@ const m = {
1333
1412
  value: "{colors.fg.muted}"
1334
1413
  }
1335
1414
  }
1336
- }, le = {
1415
+ }, se = {
1337
1416
  DEFAULT: {
1338
1417
  value: {
1339
- base: "{colors.blacks.50}",
1418
+ _light: "{colors.blacks.50}",
1340
1419
  _dark: "{colors.blacks.900}"
1341
1420
  }
1342
1421
  },
1343
1422
  muted: {
1344
1423
  value: {
1345
- base: "{colors.neutral.200}",
1424
+ _light: "{colors.neutral.200}",
1346
1425
  _dark: "{colors.neutral.800}"
1347
1426
  }
1348
1427
  },
1349
1428
  subtle: {
1350
1429
  value: {
1351
- base: "{colors.neutral.50}",
1430
+ _light: "{colors.neutral.50}",
1352
1431
  _dark: "{colors.neutral.950}"
1353
1432
  }
1354
1433
  },
1355
1434
  hover: {
1356
1435
  value: {
1357
- base: "{colors.neutral.100}",
1436
+ _light: "{colors.neutral.100}",
1358
1437
  _dark: "{colors.neutral.850}"
1359
1438
  }
1360
1439
  },
1361
1440
  active: {
1362
1441
  value: {
1363
- base: "{colors.neutral.75}",
1442
+ _light: "{colors.neutral.75}",
1364
1443
  _dark: "{colors.blacks.850}"
1365
1444
  }
1366
1445
  },
1367
1446
  code: {
1368
1447
  value: {
1369
- base: "{colors.blacks.50}",
1448
+ _light: "{colors.blacks.50}",
1370
1449
  _dark: "{colors.blacks.800}"
1371
1450
  }
1372
1451
  },
1373
1452
  emphasized: {
1374
1453
  value: {
1375
- base: "{colors.bg.active}",
1454
+ _light: "{colors.bg.active}",
1376
1455
  _dark: "{colors.bg.active}"
1377
1456
  }
1378
1457
  },
1379
1458
  inverted: {
1380
1459
  value: {
1381
- base: "{colors.blacks.800}",
1460
+ _light: "{colors.blacks.800}",
1382
1461
  _dark: "{colors.blacks.100}"
1383
1462
  }
1384
1463
  },
1385
1464
  panel: {
1386
1465
  value: {
1387
- base: "{colors.blacks.100}",
1466
+ _light: "{colors.blacks.100}",
1388
1467
  _dark: "{colors.blacks.850}"
1389
1468
  }
1390
1469
  },
1391
1470
  dark: {
1392
1471
  value: {
1393
- base: "{colors.blacks.900}",
1472
+ _light: "{colors.blacks.900}",
1394
1473
  _dark: "{colors.blacks.900}"
1395
1474
  }
1396
1475
  },
1397
1476
  white: {
1398
1477
  value: {
1399
- base: "{colors.blacks.50}",
1478
+ _light: "{colors.blacks.50}",
1400
1479
  _dark: "{colors.blacks.50}"
1401
1480
  }
1402
1481
  },
@@ -1404,19 +1483,19 @@ const m = {
1404
1483
  primary: {
1405
1484
  default: {
1406
1485
  value: {
1407
- base: "{colors.bg.accent-primary.default}",
1486
+ _light: "{colors.bg.accent-primary.default}",
1408
1487
  _dark: "{colors.bg.accent-primary.dark}"
1409
1488
  }
1410
1489
  },
1411
1490
  hover: {
1412
1491
  value: {
1413
- base: "{colors.bg.accent-primary.hover}",
1492
+ _light: "{colors.bg.accent-primary.hover}",
1414
1493
  _dark: "{colors.bg.accent-primary.medium}"
1415
1494
  }
1416
1495
  },
1417
1496
  pressed: {
1418
1497
  value: {
1419
- base: "{colors.bg.accent-primary.pressed}",
1498
+ _light: "{colors.bg.accent-primary.pressed}",
1420
1499
  _dark: "{colors.bg.accent-primary.medium}"
1421
1500
  }
1422
1501
  },
@@ -1430,19 +1509,25 @@ const m = {
1430
1509
  value: "{colors.bg}"
1431
1510
  },
1432
1511
  hover: {
1433
- value: "{colors.bg.hover}"
1512
+ value: {
1513
+ _light: "{colors.bg.muted}"
1514
+ }
1434
1515
  },
1435
1516
  focus: {
1436
- value: "{colors.bg.hover}"
1517
+ value: {
1518
+ _light: "{colors.bg.muted}"
1519
+ }
1437
1520
  },
1438
1521
  selected: {
1439
- value: "{colors.bg.active}"
1522
+ value: {
1523
+ _light: "{colors.bg.active}"
1524
+ }
1440
1525
  }
1441
1526
  },
1442
1527
  display: {
1443
1528
  "very-light": {
1444
1529
  value: {
1445
- base: "{colors.sand.50}",
1530
+ _light: "{colors.sand.50}",
1446
1531
  _dark: "{colors.blacks.1000}"
1447
1532
  }
1448
1533
  }
@@ -1450,43 +1535,43 @@ const m = {
1450
1535
  "accent-primary": {
1451
1536
  default: {
1452
1537
  value: {
1453
- base: "{colors.yellow.75}",
1538
+ _light: "{colors.yellow.75}",
1454
1539
  _dark: "{colors.yellow.75}"
1455
1540
  }
1456
1541
  },
1457
1542
  hover: {
1458
1543
  value: {
1459
- base: "{colors.yellow.100}",
1544
+ _light: "{colors.yellow.100}",
1460
1545
  _dark: "{colors.yellow.100}"
1461
1546
  }
1462
1547
  },
1463
1548
  pressed: {
1464
1549
  value: {
1465
- base: "{colors.yellow.150}",
1550
+ _light: "{colors.yellow.150}",
1466
1551
  _dark: "{colors.yellow.150}"
1467
1552
  }
1468
1553
  },
1469
1554
  "very-light": {
1470
1555
  value: {
1471
- base: "{colors.yellow.75}",
1556
+ _light: "{colors.yellow.75}",
1472
1557
  _dark: "{colors.yellow.75}"
1473
1558
  }
1474
1559
  },
1475
1560
  light: {
1476
1561
  value: {
1477
- base: "{colors.yellow.75}",
1562
+ _light: "{colors.yellow.75}",
1478
1563
  _dark: "{colors.yellow.75}"
1479
1564
  }
1480
1565
  },
1481
1566
  medium: {
1482
1567
  value: {
1483
- base: "{colors.yellow.100}",
1568
+ _light: "{colors.yellow.100}",
1484
1569
  _dark: "{colors.yellow.100}"
1485
1570
  }
1486
1571
  },
1487
1572
  dark: {
1488
1573
  value: {
1489
- base: "{colors.yellow.150}",
1574
+ _light: "{colors.yellow.150}",
1490
1575
  _dark: "{colors.yellow.150}"
1491
1576
  }
1492
1577
  }
@@ -1494,135 +1579,135 @@ const m = {
1494
1579
  "accent-secondary": {
1495
1580
  "grey-dark": {
1496
1581
  value: {
1497
- base: "{colors.blacks.50}",
1582
+ _light: "{colors.blacks.50}",
1498
1583
  _dark: "{colors.blacks.1000}"
1499
1584
  }
1500
1585
  },
1501
1586
  "grey-light": {
1502
1587
  value: {
1503
- base: "{colors.blacks.100}",
1588
+ _light: "{colors.blacks.100}",
1504
1589
  _dark: "{colors.blacks.900}"
1505
1590
  }
1506
1591
  },
1507
1592
  "red-very-light": {
1508
1593
  value: {
1509
- base: "{colors.red.50}",
1594
+ _light: "{colors.red.50}",
1510
1595
  _dark: "{colors.red.100}"
1511
1596
  }
1512
1597
  },
1513
1598
  "red-light": {
1514
1599
  value: {
1515
- base: "{colors.red.100}",
1600
+ _light: "{colors.red.100}",
1516
1601
  _dark: "{colors.red.100}"
1517
1602
  }
1518
1603
  },
1519
1604
  "pink-light": {
1520
1605
  value: {
1521
- base: "{colors.pink.50}",
1606
+ _light: "{colors.pink.50}",
1522
1607
  _dark: "{colors.pink.700}"
1523
1608
  }
1524
1609
  },
1525
1610
  "pink-medium": {
1526
1611
  value: {
1527
- base: "{colors.pink.100}",
1612
+ _light: "{colors.pink.100}",
1528
1613
  _dark: "{colors.pink.800}"
1529
1614
  }
1530
1615
  },
1531
1616
  "blue-very-light": {
1532
1617
  value: {
1533
- base: "{colors.blue.25}",
1618
+ _light: "{colors.blue.25}",
1534
1619
  _dark: "{colors.blue.50}"
1535
1620
  }
1536
1621
  },
1537
1622
  "blue-light": {
1538
1623
  value: {
1539
- base: "{colors.mint.100}",
1624
+ _light: "{colors.mint.100}",
1540
1625
  _dark: "{colors.mint.100}"
1541
1626
  }
1542
1627
  },
1543
1628
  "blue-medium": {
1544
1629
  value: {
1545
- base: "{colors.mint.200}",
1630
+ _light: "{colors.mint.200}",
1546
1631
  _dark: "{colors.mint.200}"
1547
1632
  }
1548
1633
  },
1549
1634
  "blue-dark": {
1550
1635
  value: {
1551
- base: "{colors.blue.700}",
1636
+ _light: "{colors.blue.700}",
1552
1637
  _dark: "{colors.blue.200}"
1553
1638
  }
1554
1639
  },
1555
1640
  "cyan-light": {
1556
1641
  value: {
1557
- base: "{colors.cyan.50}",
1642
+ _light: "{colors.cyan.50}",
1558
1643
  _dark: "{colors.cyan.100}"
1559
1644
  }
1560
1645
  },
1561
1646
  "green-light": {
1562
1647
  value: {
1563
- base: "{colors.green.50}",
1648
+ _light: "{colors.green.50}",
1564
1649
  _dark: "{colors.sapphire.50}"
1565
1650
  }
1566
1651
  },
1567
1652
  "yellow-light": {
1568
1653
  value: {
1569
- base: "{colors.yellow.75}",
1654
+ _light: "{colors.yellow.75}",
1570
1655
  _dark: "{colors.yellow.75}"
1571
1656
  }
1572
1657
  },
1573
1658
  "yellow-medium": {
1574
1659
  value: {
1575
- base: "{colors.yellow.100}",
1660
+ _light: "{colors.yellow.100}",
1576
1661
  _dark: "{colors.yellow.100}"
1577
1662
  }
1578
1663
  },
1579
1664
  "yellow-dark": {
1580
1665
  value: {
1581
- base: "{colors.yellow.150}",
1666
+ _light: "{colors.yellow.150}",
1582
1667
  _dark: "{colors.yellow.150}"
1583
1668
  }
1584
1669
  },
1585
1670
  "sand-light": {
1586
1671
  value: {
1587
- base: "{colors.sand.100}",
1672
+ _light: "{colors.sand.100}",
1588
1673
  _dark: "{colors.sand.100}"
1589
1674
  }
1590
1675
  }
1591
1676
  }
1592
- }, ae = {
1677
+ }, ce = {
1593
1678
  DEFAULT: {
1594
1679
  value: {
1595
- base: "{colors.neutral.500}",
1680
+ _light: "{colors.neutral.500}",
1596
1681
  _dark: "{colors.neutral.600}"
1597
1682
  }
1598
1683
  },
1599
1684
  muted: {
1600
1685
  value: {
1601
- base: "{colors.neutral.400}",
1686
+ _light: "{colors.neutral.400}",
1602
1687
  _dark: "{colors.neutral.700}"
1603
1688
  }
1604
1689
  },
1605
1690
  subtle: {
1606
1691
  value: {
1607
- base: "{colors.neutral.300}",
1692
+ _light: "{colors.neutral.300}",
1608
1693
  _dark: "{colors.neutral.750}"
1609
1694
  }
1610
1695
  },
1611
1696
  inverted: {
1612
1697
  value: {
1613
- base: "{colors.neutral.600}",
1698
+ _light: "{colors.neutral.600}",
1614
1699
  _dark: "{colors.neutral.500}"
1615
1700
  }
1616
1701
  },
1617
1702
  "accent-light": {
1618
1703
  value: {
1619
- base: "{colors.mint.100}",
1704
+ _light: "{colors.mint.100}",
1620
1705
  _dark: "{colors.mint.100}"
1621
1706
  }
1622
1707
  },
1623
1708
  accent: {
1624
1709
  value: {
1625
- base: "{colors.blue.700}",
1710
+ _light: "{colors.blue.700}",
1626
1711
  _dark: "{colors.blue.200}"
1627
1712
  }
1628
1713
  },
@@ -1631,14 +1716,14 @@ const m = {
1631
1716
  value: "{colors.border.muted}"
1632
1717
  }
1633
1718
  }
1634
- }, oe = {
1719
+ }, ne = {
1635
1720
  border: {
1636
1721
  value: {
1637
1722
  _light: "{colors.mint.200}",
1638
1723
  _dark: "{colors.mint.200}"
1639
1724
  }
1640
1725
  }
1641
- }, re = {
1726
+ }, ue = {
1642
1727
  contrast: {
1643
1728
  value: {
1644
1729
  _light: "black",
@@ -1687,73 +1772,73 @@ const m = {
1687
1772
  _dark: "{colors.orange.500}"
1688
1773
  }
1689
1774
  }
1690
- }, se = {
1775
+ }, de = {
1691
1776
  text: {
1692
1777
  primary: {
1693
1778
  value: {
1694
- base: "{colors.blacks.800}",
1779
+ _light: "{colors.blacks.800}",
1695
1780
  _dark: "{colors.blacks.200}"
1696
1781
  }
1697
1782
  },
1698
1783
  secondary: {
1699
1784
  value: {
1700
- base: "{colors.blacks.600}",
1785
+ _light: "{colors.blacks.600}",
1701
1786
  _dark: "{colors.blacks.500}"
1702
1787
  }
1703
1788
  }
1704
1789
  },
1705
1790
  grid: {
1706
1791
  value: {
1707
- base: "{colors.blacks.300}",
1792
+ _light: "{colors.blacks.300}",
1708
1793
  _dark: "{colors.blacks.800}"
1709
1794
  }
1710
1795
  },
1711
1796
  axis: {
1712
1797
  value: {
1713
- base: "{colors.blacks.700}",
1798
+ _light: "{colors.blacks.700}",
1714
1799
  _dark: "{colors.blacks.300}"
1715
1800
  }
1716
1801
  },
1717
1802
  categorical: {
1718
1803
  1: {
1719
1804
  value: {
1720
- base: "{colors.blue.300}",
1805
+ _light: "{colors.blue.300}",
1721
1806
  _dark: "{colors.blue.300}"
1722
1807
  }
1723
1808
  },
1724
1809
  2: {
1725
1810
  value: {
1726
- base: "{colors.orange.500}",
1811
+ _light: "{colors.orange.500}",
1727
1812
  _dark: "{colors.orange.500}"
1728
1813
  }
1729
1814
  },
1730
1815
  3: {
1731
1816
  value: {
1732
- base: "{colors.purple.700}",
1817
+ _light: "{colors.purple.700}",
1733
1818
  _dark: "{colors.purple.700}"
1734
1819
  }
1735
1820
  },
1736
1821
  4: {
1737
1822
  value: {
1738
- base: "{colors.red.500}",
1823
+ _light: "{colors.red.500}",
1739
1824
  _dark: "{colors.red.600}"
1740
1825
  }
1741
1826
  },
1742
1827
  5: {
1743
1828
  value: {
1744
- base: "{colors.pink.500}",
1829
+ _light: "{colors.pink.500}",
1745
1830
  _dark: "{colors.pink.500}"
1746
1831
  }
1747
1832
  },
1748
1833
  6: {
1749
1834
  value: {
1750
- base: "{colors.cyan.800}",
1835
+ _light: "{colors.cyan.800}",
1751
1836
  _dark: "{colors.green.500}"
1752
1837
  }
1753
1838
  },
1754
1839
  7: {
1755
1840
  value: {
1756
- base: "{colors.red.200}",
1841
+ _light: "{colors.red.200}",
1757
1842
  _dark: "{colors.cyan.700}"
1758
1843
  }
1759
1844
  }
@@ -1762,43 +1847,43 @@ const m = {
1762
1847
  blue: {
1763
1848
  "low-3": {
1764
1849
  value: {
1765
- base: "{colors.blue.200}",
1850
+ _light: "{colors.blue.200}",
1766
1851
  _dark: "{colors.blue.800}"
1767
1852
  }
1768
1853
  },
1769
1854
  "low-2": {
1770
1855
  value: {
1771
- base: "{colors.blue.300}",
1856
+ _light: "{colors.blue.300}",
1772
1857
  _dark: "{colors.blue.700}"
1773
1858
  }
1774
1859
  },
1775
1860
  "low-1": {
1776
1861
  value: {
1777
- base: "{colors.blue.400}",
1862
+ _light: "{colors.blue.400}",
1778
1863
  _dark: "{colors.blue.600}"
1779
1864
  }
1780
1865
  },
1781
1866
  default: {
1782
1867
  value: {
1783
- base: "{colors.blue.500}",
1868
+ _light: "{colors.blue.500}",
1784
1869
  _dark: "{colors.blue.500}"
1785
1870
  }
1786
1871
  },
1787
1872
  "high-1": {
1788
1873
  value: {
1789
- base: "{colors.blue.600}",
1874
+ _light: "{colors.blue.600}",
1790
1875
  _dark: "{colors.blue.400}"
1791
1876
  }
1792
1877
  },
1793
1878
  "high-2": {
1794
1879
  value: {
1795
- base: "{colors.blue.700}",
1880
+ _light: "{colors.blue.700}",
1796
1881
  _dark: "{colors.blue.300}"
1797
1882
  }
1798
1883
  },
1799
1884
  "high-3": {
1800
1885
  value: {
1801
- base: "{colors.blue.800}",
1886
+ _light: "{colors.blue.800}",
1802
1887
  _dark: "{colors.blue.200}"
1803
1888
  }
1804
1889
  }
@@ -1806,66 +1891,66 @@ const m = {
1806
1891
  red: {
1807
1892
  "low-3": {
1808
1893
  value: {
1809
- base: "{colors.red.200}",
1894
+ _light: "{colors.red.200}",
1810
1895
  _dark: "{colors.red.800}"
1811
1896
  }
1812
1897
  },
1813
1898
  "low-2": {
1814
1899
  value: {
1815
- base: "{colors.red.300}",
1900
+ _light: "{colors.red.300}",
1816
1901
  _dark: "{colors.red.700}"
1817
1902
  }
1818
1903
  },
1819
1904
  "low-1": {
1820
1905
  value: {
1821
- base: "{colors.red.400}",
1906
+ _light: "{colors.red.400}",
1822
1907
  _dark: "{colors.red.600}"
1823
1908
  }
1824
1909
  },
1825
1910
  default: {
1826
1911
  value: {
1827
- base: "{colors.red.500}",
1912
+ _light: "{colors.red.500}",
1828
1913
  _dark: "{colors.red.500}"
1829
1914
  }
1830
1915
  },
1831
1916
  "high-1": {
1832
1917
  value: {
1833
- base: "{colors.red.600}",
1918
+ _light: "{colors.red.600}",
1834
1919
  _dark: "{colors.red.400}"
1835
1920
  }
1836
1921
  },
1837
1922
  "high-2": {
1838
1923
  value: {
1839
- base: "{colors.red.700}",
1924
+ _light: "{colors.red.700}",
1840
1925
  _dark: "{colors.red.300}"
1841
1926
  }
1842
1927
  },
1843
1928
  "high-3": {
1844
1929
  value: {
1845
- base: "{colors.red.800}",
1930
+ _light: "{colors.red.800}",
1846
1931
  _dark: "{colors.red.200}"
1847
1932
  }
1848
1933
  }
1849
1934
  }
1850
1935
  }
1851
- }, te = {
1936
+ }, ge = {
1852
1937
  selectable: {
1853
1938
  primary: {
1854
1939
  value: {
1855
- base: "{colors.blacks.800}",
1940
+ _light: "{colors.blacks.800}",
1856
1941
  _dark: "{colors.blacks.800}"
1857
1942
  }
1858
1943
  }
1859
1944
  }
1860
- }, ie = {
1861
- fg: ee,
1862
- bg: le,
1863
- border: ae,
1864
- blue: oe,
1865
- orange: re,
1866
- vis: se,
1867
- text: te
1868
- }, ue = r({
1945
+ }, be = {
1946
+ fg: ie,
1947
+ bg: se,
1948
+ border: ce,
1949
+ blue: ne,
1950
+ orange: ue,
1951
+ vis: de,
1952
+ text: ge
1953
+ }, ve = a({
1869
1954
  modal: {
1870
1955
  value: {
1871
1956
  paddingInline: "xs",
@@ -1877,7 +1962,7 @@ const m = {
1877
1962
  boxShadow: "mid"
1878
1963
  }
1879
1964
  }
1880
- }), ne = {
1965
+ }), me = {
1881
1966
  "low-light": {
1882
1967
  value: "0px 2px 4px 0px rgba(0, 0, 0, 0.10)"
1883
1968
  },
@@ -1908,38 +1993,38 @@ const m = {
1908
1993
  "desktop-icon-label-text-selected-dark": {
1909
1994
  value: "0px 2px 4px rgba(37, 99, 235, 0.75)"
1910
1995
  }
1911
- }, ce = {
1996
+ }, he = {
1912
1997
  low: {
1913
1998
  value: {
1914
- base: "{shadows.low-light}",
1999
+ _light: "{shadows.low-light}",
1915
2000
  _dark: "{shadows.low-dark}"
1916
2001
  }
1917
2002
  },
1918
2003
  mid: {
1919
2004
  value: {
1920
- base: "{shadows.mid-light}",
2005
+ _light: "{shadows.mid-light}",
1921
2006
  _dark: "{shadows.mid-dark}"
1922
2007
  }
1923
2008
  },
1924
2009
  high: {
1925
2010
  value: {
1926
- base: "{shadows.high-light}",
2011
+ _light: "{shadows.high-light}",
1927
2012
  _dark: "{shadows.high-dark}"
1928
2013
  }
1929
2014
  },
1930
2015
  "desktop-icon-label": {
1931
2016
  value: {
1932
- base: "{shadows.desktop-icon-label-text-light}",
2017
+ _light: "{shadows.desktop-icon-label-text-light}",
1933
2018
  _dark: "{shadows.desktop-icon-label-text-dark}"
1934
2019
  }
1935
2020
  },
1936
2021
  "desktop-icon-label-selected": {
1937
2022
  value: {
1938
- base: "{shadows.desktop-icon-label-text-selected-light}",
2023
+ _light: "{shadows.desktop-icon-label-text-selected-light}",
1939
2024
  _dark: "{shadows.desktop-icon-label-text-selected-dark}"
1940
2025
  }
1941
2026
  }
1942
- }, de = s({
2027
+ }, pe = t({
1943
2028
  brand: {
1944
2029
  value: {
1945
2030
  fontFamily: "brand",
@@ -2172,50 +2257,53 @@ const m = {
2172
2257
  letterSpacing: "0.14px"
2173
2258
  }
2174
2259
  }
2175
- }), be = t({
2176
- globalCss: m,
2260
+ }), Fe = i({
2261
+ globalCss: k,
2177
2262
  theme: {
2178
2263
  breakpoints: {
2179
2264
  "3xl": "2560px",
2180
2265
  "4xl": "3840px"
2181
2266
  },
2182
- textStyles: de,
2183
- layerStyles: ue,
2267
+ textStyles: pe,
2268
+ layerStyles: ve,
2184
2269
  recipes: {
2185
- button: V,
2186
- divider: I,
2187
- input: $,
2188
- skeleton: K,
2189
- textarea: N
2270
+ button: Y,
2271
+ divider: j,
2272
+ input: K,
2273
+ kbd: N,
2274
+ skeleton: oe,
2275
+ textarea: re
2190
2276
  },
2191
2277
  tokens: {
2192
- colors: L,
2193
- fonts: R,
2194
- fontSizes: W,
2195
- fontWeights: H,
2196
- radii: U,
2197
- shadows: ne,
2198
- spacing: T
2278
+ colors: U,
2279
+ fonts: M,
2280
+ fontSizes: X,
2281
+ fontWeights: V,
2282
+ radii: I,
2283
+ shadows: me,
2284
+ spacing: P
2199
2285
  },
2200
2286
  semanticTokens: {
2201
- colors: ie,
2202
- borders: Z,
2203
- shadows: ce
2287
+ colors: be,
2288
+ borders: te,
2289
+ shadows: he
2204
2290
  },
2205
2291
  slotRecipes: {
2206
- alert: M,
2207
- drawer: P,
2208
- tooltip: Q,
2209
- popover: G,
2210
- menu: q,
2211
- editable: O,
2212
- form: Y,
2213
- dialog: X,
2214
- progressCircle: J
2292
+ alert: O,
2293
+ drawer: q,
2294
+ tooltip: ae,
2295
+ popover: Z,
2296
+ menu: Q,
2297
+ editable: G,
2298
+ form: J,
2299
+ dialog: $,
2300
+ progressCircle: le
2215
2301
  }
2216
2302
  }
2217
- }), me = i(u, be);
2303
+ }), fe = s(c, Fe);
2218
2304
  export {
2219
- me as t
2305
+ xe as c,
2306
+ y as m,
2307
+ fe as t
2220
2308
  };
2221
- //# sourceMappingURL=theme-BLGUwVOD.js.map
2309
+ //# sourceMappingURL=theme-0SQvHr1t.js.map