@mekari/pixel3-theme 0.2.2-dev.0 → 0.2.2-dev.1

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 (40) hide show
  1. package/dist/index.js +581 -244
  2. package/dist/index.mjs +496 -159
  3. package/dist/recipes/airene-button.d.mts +5 -0
  4. package/dist/recipes/airene-button.d.ts +5 -0
  5. package/dist/recipes/index.d.mts +1 -0
  6. package/dist/recipes/index.d.ts +1 -0
  7. package/dist/tokens/colors.d.mts +3 -0
  8. package/dist/tokens/colors.d.ts +3 -0
  9. package/dist/tokens/index.d.mts +3 -0
  10. package/dist/tokens/index.d.ts +3 -0
  11. package/dist/tokens-next/colors.d.mts +3 -0
  12. package/dist/tokens-next/colors.d.ts +3 -0
  13. package/dist/tokens-next/index.d.mts +3 -0
  14. package/dist/tokens-next/index.d.ts +3 -0
  15. package/package.json +3 -2
  16. package/src/conditions.ts +1 -1
  17. package/src/keyframes.ts +5 -0
  18. package/src/recipes/accordion.ts +50 -10
  19. package/src/recipes/airene-button.ts +120 -0
  20. package/src/recipes/avatar.ts +33 -13
  21. package/src/recipes/banner.ts +0 -1
  22. package/src/recipes/button.ts +127 -22
  23. package/src/recipes/checkbox.ts +8 -6
  24. package/src/recipes/dropzone.ts +1 -1
  25. package/src/recipes/icon.ts +3 -1
  26. package/src/recipes/index.ts +3 -1
  27. package/src/recipes/input.ts +32 -12
  28. package/src/recipes/modal.ts +9 -2
  29. package/src/recipes/radio.ts +8 -6
  30. package/src/recipes/segmented-control.ts +1 -1
  31. package/src/recipes/tabs.ts +2 -2
  32. package/src/recipes/tag.ts +3 -3
  33. package/src/recipes/text.ts +0 -1
  34. package/src/recipes/timeline.ts +8 -2
  35. package/src/recipes/toast.ts +1 -2
  36. package/src/recipes/toggle.ts +8 -6
  37. package/src/recipes/tooltip.ts +1 -0
  38. package/src/text-styles.ts +1 -1
  39. package/src/tokens/colors.ts +1 -0
  40. package/src/tokens-next/colors.ts +1 -0
package/dist/index.js CHANGED
@@ -25,7 +25,7 @@ __export(theme_exports, {
25
25
  module.exports = __toCommonJS(theme_exports);
26
26
 
27
27
  // src/index.ts
28
- var import_dev63 = require("@pandacss/dev");
28
+ var import_dev64 = require("@pandacss/dev");
29
29
 
30
30
  // src/breakpoints.ts
31
31
  var breakpoints = {
@@ -40,7 +40,7 @@ var conditions = {
40
40
  extend: {
41
41
  disabled: "&:is(:disabled, [disabled], [aria-disabled=true], [data-disabled])",
42
42
  invalid: "&:is([aria-invalid=true], [data-invalid])",
43
- active: "&:is(:active, [data-active], [data-active=true])",
43
+ active: "&:is(:active, [data-active=true])",
44
44
  checked: "&:is(:checked, [data-checked], [aria-checked=true], [data-state=checked])",
45
45
  indeterminate: "&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state=indeterminate])",
46
46
  closed: "&:is([data-state=closed])",
@@ -105,6 +105,11 @@ var keyframes = (0, import_dev2.defineKeyframes)({
105
105
  },
106
106
  spin: {
107
107
  "100%": { transform: "rotate(1turn)" }
108
+ },
109
+ "border-shine": {
110
+ "0%": { backgroundPosition: "0% 20%" },
111
+ "50%": { backgroundPosition: "100% 50%" },
112
+ "100%": { backgroundPosition: "0% 100%" }
108
113
  }
109
114
  });
110
115
 
@@ -144,7 +149,7 @@ var tagSlotRecipe = (0, import_dev3.defineSlotRecipe)({
144
149
  right: "0",
145
150
  paddingTop: "1",
146
151
  padding: "0",
147
- transition: "all 250ms!",
152
+ transition: "opacity 250ms!",
148
153
  visibility: "hidden",
149
154
  opacity: "0",
150
155
  _groupHover: {
@@ -207,9 +212,9 @@ var tagSlotRecipe = (0, import_dev3.defineSlotRecipe)({
207
212
  borderBottomLeftRadius: "0",
208
213
  color: "gray.600",
209
214
  _nextTheme: {
210
- background: "background.danger",
215
+ background: "background.neutral.subtle",
211
216
  boxShadow: "-7px 0px 15px -3px #0000001A",
212
- color: "icon.danger"
217
+ color: "icon.default"
213
218
  }
214
219
  }
215
220
  }
@@ -373,20 +378,20 @@ var avatarSlotRecipe = (0, import_dev4.defineSlotRecipe)({
373
378
  variantColor,
374
379
  size: {
375
380
  sm: {
376
- root: { width: "6", height: "6", fontSize: "xs" },
377
- icon: { width: "4!", height: "4!" }
381
+ root: { width: "5", height: "5", fontSize: "sm" },
382
+ icon: { width: "3!", height: "3!" }
378
383
  },
379
384
  md: {
380
- root: { width: "8", height: "8", fontSize: "sm" },
381
- icon: { width: "5!", height: "5!" }
385
+ root: { width: "6", height: "6", fontSize: "md" },
386
+ icon: { width: "4!", height: "4!" }
382
387
  },
383
388
  lg: {
384
- root: { width: "12", height: "12", fontSize: "lg" },
385
- icon: { width: "8!", height: "8!" }
389
+ root: { width: "9", height: "9", fontSize: "sm" },
390
+ icon: { width: "5!", height: "5!" }
386
391
  },
387
392
  xl: {
388
- root: { width: "20", height: "20", fontSize: "2xl" },
389
- icon: { width: "16!", height: "16!" }
393
+ root: { width: "20", height: "20", fontSize: "32px" },
394
+ icon: { width: "12!", height: "12!" }
390
395
  }
391
396
  }
392
397
  },
@@ -443,7 +448,7 @@ var avatarGroupSlotRecipe = (0, import_dev4.defineSlotRecipe)({
443
448
  zIndex: "0"
444
449
  },
445
450
  excess: {
446
- marginLeft: "2",
451
+ marginLeft: "1",
447
452
  color: "blue.400",
448
453
  backgroundColor: "blue.50",
449
454
  fontWeight: "semiBold",
@@ -462,16 +467,44 @@ var avatarGroupSlotRecipe = (0, import_dev4.defineSlotRecipe)({
462
467
  variants: {
463
468
  size: {
464
469
  sm: {
465
- excess: { width: "6", height: "6", fontSize: "xs" }
470
+ root: {
471
+ "& > [data-pixel-component=MpAvatar]": {
472
+ width: "6.5",
473
+ height: "6.5",
474
+ fontSize: "sm"
475
+ }
476
+ },
477
+ excess: { width: "5", height: "5", fontSize: "sm" }
466
478
  },
467
479
  md: {
468
- excess: { width: "8", height: "8", fontSize: "sm" }
480
+ root: {
481
+ "& > [data-pixel-component=MpAvatar]": {
482
+ width: "7",
483
+ height: "7",
484
+ fontSize: "md"
485
+ }
486
+ },
487
+ excess: { width: "6", height: "6", fontSize: "md" }
469
488
  },
470
489
  lg: {
471
- excess: { width: "12", height: "12", fontSize: "lg" }
490
+ root: {
491
+ "& > [data-pixel-component=MpAvatar]": {
492
+ width: "9.5",
493
+ height: "9.5",
494
+ fontSize: "sm"
495
+ }
496
+ },
497
+ excess: { width: "9", height: "9", fontSize: "sm" }
472
498
  },
473
499
  xl: {
474
- excess: { width: "20", height: "20", fontSize: "2xl" }
500
+ root: {
501
+ "& > [data-pixel-component=MpAvatar]": {
502
+ width: "82px",
503
+ height: "82px",
504
+ fontSize: "32px"
505
+ }
506
+ },
507
+ excess: { width: "20", height: "20", fontSize: "32px" }
475
508
  }
476
509
  }
477
510
  },
@@ -479,9 +512,128 @@ var avatarGroupSlotRecipe = (0, import_dev4.defineSlotRecipe)({
479
512
  defaultVariants: {}
480
513
  });
481
514
 
482
- // src/recipes/button.ts
515
+ // src/recipes/airene-button.ts
483
516
  var import_dev5 = require("@pandacss/dev");
484
- var buttonRecipe = (0, import_dev5.defineRecipe)({
517
+ var aireneButtonSlotRecipe = (0, import_dev5.defineSlotRecipe)({
518
+ className: "airene-button",
519
+ jsx: ["MpAireneButton", "mp-airene-button"],
520
+ slots: ["root", "badge"],
521
+ base: {
522
+ root: {
523
+ display: "inline-flex!",
524
+ justifyContent: "center",
525
+ alignItems: "center",
526
+ position: "relative",
527
+ backgroundColor: "white",
528
+ color: "blue.400!",
529
+ borderRadius: "25px!",
530
+ fontSize: "md",
531
+ fontWeight: "semiBold",
532
+ paddingLeft: "0.625rem!",
533
+ paddingRight: "0.625rem!",
534
+ overflow: "hidden",
535
+ paddingTop: "7.5px!",
536
+ paddingBottom: "7.5px!",
537
+ height: "auto",
538
+ zIndex: "1",
539
+ gap: "0!",
540
+ transition: "color 0.3s ease, background-color 0.3s ease",
541
+ _nextTheme: {
542
+ backgroundColor: "background.neutral",
543
+ color: "text.link!"
544
+ },
545
+ _before: {
546
+ content: "''",
547
+ position: "absolute",
548
+ top: "-2px",
549
+ left: "-2px",
550
+ right: "-2px",
551
+ bottom: "-2px",
552
+ borderRadius: "23px",
553
+ background: "vibrantPurple",
554
+ backgroundSize: "200% 200%",
555
+ animation: "border-shine 4s linear infinite",
556
+ transition: "background-color 0.3s ease",
557
+ zIndex: "-1"
558
+ },
559
+ _after: {
560
+ content: "''",
561
+ position: "absolute",
562
+ top: "2px",
563
+ left: "2px",
564
+ right: "2px",
565
+ bottom: "2px",
566
+ borderRadius: "999px",
567
+ backgroundColor: "white",
568
+ zIndex: "-1",
569
+ _nextTheme: {
570
+ backgroundColor: "background.neutral"
571
+ }
572
+ },
573
+ _hover: {
574
+ _before: {
575
+ background: "linear-gradient(90deg, var(--mp-colors-blue-400), var(--mp-colors-blue-400), var(--mp-colors-blue-400))",
576
+ _nextTheme: {
577
+ background: "linear-gradient(90deg, var(--mp-colors-background-brand-bold), var(--mp-colors-background-brand-bold), var(--mp-colors-background-brand-bold))"
578
+ }
579
+ }
580
+ },
581
+ _active: {
582
+ _before: {
583
+ background: "linear-gradient(90deg, var(--mp-colors-blue-400), var(--mp-colors-blue-400), var(--mp-colors-blue-400))"
584
+ },
585
+ _after: {
586
+ background: "blue.50"
587
+ }
588
+ },
589
+ _disabled: {
590
+ color: "gray.400!",
591
+ cursor: "not-allowed",
592
+ _nextTheme: {
593
+ color: "text.placeholder!"
594
+ },
595
+ _before: {
596
+ background: "gray.50!"
597
+ },
598
+ _after: {
599
+ background: "gray.50!",
600
+ _nextTheme: {
601
+ bacground: "#F0F1F3!"
602
+ }
603
+ }
604
+ }
605
+ },
606
+ badge: {
607
+ display: "flex",
608
+ backgroundColor: "var(--mp-airene-button-badge-background)",
609
+ borderRadius: "999px",
610
+ paddingRight: "1",
611
+ paddingLeft: "0.5",
612
+ paddingY: "0.5",
613
+ height: "4",
614
+ marginLeft: "1",
615
+ "& > [data-pixel-component=MpIcon]": {
616
+ width: "3!",
617
+ height: "3!",
618
+ "& > path": {
619
+ fill: "var(--mp-airene-button-badge-icon)"
620
+ }
621
+ },
622
+ "& > [data-pixel-component=MpText]": {
623
+ fontSize: "0.625rem!",
624
+ fontWeight: "semiBold!",
625
+ color: "var(--mp-airene-button-badge-text)"
626
+ }
627
+ }
628
+ },
629
+ variants: {},
630
+ compoundVariants: [],
631
+ defaultVariants: {}
632
+ });
633
+
634
+ // src/recipes/button.ts
635
+ var import_dev6 = require("@pandacss/dev");
636
+ var buttonRecipe = (0, import_dev6.defineRecipe)({
485
637
  className: "button",
486
638
  jsx: ["MpButton", "mp-button"],
487
639
  base: {
@@ -621,7 +773,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
621
773
  background: "red.700",
622
774
  borderColor: "red.700"
623
775
  },
624
- _focus: {
776
+ _focusVisible: {
625
777
  borderColor: "red.400",
626
778
  boxShadow: "0 0 0 3px #FDECEE"
627
779
  },
@@ -640,7 +792,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
640
792
  background: "background.danger.bold.pressed",
641
793
  borderColor: "background.danger.bold.pressed"
642
794
  },
643
- _focus: {
795
+ _focusVisible: {
644
796
  borderColor: "border.focused",
645
797
  boxShadow: "focus"
646
798
  },
@@ -649,6 +801,38 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
649
801
  }
650
802
  }
651
803
  },
804
+ tertiary: {
805
+ color: "white",
806
+ background: "#282E33",
807
+ borderColor: "#282E33",
808
+ _hover: {
809
+ background: "#38414A",
810
+ borderColor: "#38414A"
811
+ },
812
+ _active: {
813
+ background: "#454F59",
814
+ borderColor: "#454F59"
815
+ },
816
+ _loading: {
817
+ background: "#282E33"
818
+ },
819
+ _nextTheme: {
820
+ color: "text.inverse.static",
821
+ background: "background.tertiary",
822
+ borderColor: "background.tertiary",
823
+ _hover: {
824
+ background: "background.tertiary.hovered",
825
+ borderColor: "background.tertiary.hovered"
826
+ },
827
+ _active: {
828
+ background: "background.tertiary.pressed",
829
+ borderColor: "background.tertiary.pressed"
830
+ },
831
+ _loading: {
832
+ background: "background.tertiary"
833
+ }
834
+ }
835
+ },
652
836
  textLink: {
653
837
  color: "blue.400",
654
838
  background: "transparent",
@@ -685,13 +869,28 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
685
869
  _disabled: {
686
870
  color: "text.disabled",
687
871
  _hover: {
688
- color: "text.disabled"
872
+ color: "text.disabled",
873
+ textDecoration: "none"
689
874
  }
690
875
  },
691
876
  _loading: {
692
877
  background: "text.inverse"
693
878
  }
694
879
  }
880
+ },
881
+ unstyled: {
882
+ display: "inline",
883
+ color: "inherit",
884
+ backgroundColor: "transparent",
885
+ border: "none",
886
+ outline: "none",
887
+ margin: "0",
888
+ padding: "0",
889
+ fontSize: "inherit",
890
+ fontWeight: "inherit",
891
+ lineHeight: "inherit",
892
+ userSelect: "inherit",
893
+ textAlign: "inherit"
695
894
  }
696
895
  },
697
896
  size: {
@@ -704,18 +903,38 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
704
903
  },
705
904
  _hasIcon: {
706
905
  paddingX: "1",
707
- paddingY: "1 !important",
906
+ paddingY: "1",
708
907
  _nextTheme: {
709
- paddingX: "3xs !",
710
- paddingY: "3xs !important"
908
+ paddingX: "3xs",
909
+ paddingY: "3xs"
711
910
  }
712
911
  },
713
912
  _hasLabel: {
714
- paddingX: "2 !important",
913
+ paddingX: "2",
715
914
  paddingY: "1",
915
+ _hasIcon: {
916
+ "[data-icon-position=left]": {
917
+ paddingLeft: "1.5",
918
+ paddingRight: "2"
919
+ },
920
+ "[data-icon-position=right]": {
921
+ paddingLeft: "2",
922
+ paddingRight: "1.5"
923
+ }
924
+ },
716
925
  _nextTheme: {
717
- paddingX: "xs !important",
718
- paddingY: "3xs"
926
+ paddingX: "xs",
927
+ paddingY: "3xs",
928
+ _hasIcon: {
929
+ "[data-icon-position=left]": {
930
+ paddingLeft: "2xs",
931
+ paddingRight: "xs"
932
+ },
933
+ "[data-icon-position=right]": {
934
+ paddingLeft: "xs",
935
+ paddingRight: "2xs"
936
+ }
937
+ }
719
938
  }
720
939
  }
721
940
  },
@@ -728,18 +947,38 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
728
947
  },
729
948
  _hasIcon: {
730
949
  paddingX: "1.5",
731
- paddingY: "1.5 !important",
950
+ paddingY: "1.5",
732
951
  _nextTheme: {
733
- paddingX: "2xs",
734
- paddingY: "2xs !important"
952
+ paddingX: "xs",
953
+ paddingY: "xs"
735
954
  }
736
955
  },
737
956
  _hasLabel: {
738
- paddingX: "4 !important",
957
+ paddingX: "4",
739
958
  paddingY: "2",
959
+ _hasIcon: {
960
+ "&[data-icon-position=left]": {
961
+ paddingLeft: "3 !important",
962
+ paddingRight: "4 !important"
963
+ },
964
+ "& [data-icon-position=right]": {
965
+ paddingLeft: "4 !important",
966
+ paddingRight: "3 !important"
967
+ }
968
+ },
740
969
  _nextTheme: {
741
- paddingX: "md !important",
742
- paddingY: "xs"
970
+ paddingX: "md",
971
+ paddingY: "xs",
972
+ _hasIcon: {
973
+ "[data-icon-position=left]": {
974
+ paddingLeft: "sm !important",
975
+ paddingRight: "md !important"
976
+ },
977
+ "[data-icon-position=right]": {
978
+ paddingLeft: "md !important",
979
+ paddingRight: "sm !important"
980
+ }
981
+ }
743
982
  }
744
983
  }
745
984
  }
@@ -750,7 +989,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
750
989
  variant: ["textLink"],
751
990
  css: {
752
991
  borderRadius: "sm",
753
- _focus: {
992
+ _focusVisible: {
754
993
  borderColor: "white",
755
994
  boxShadow: "focus",
756
995
  _nextTheme: {
@@ -767,9 +1006,9 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
767
1006
  }
768
1007
  },
769
1008
  {
770
- variant: ["primary", "secondary", "ghost"],
1009
+ variant: ["primary", "secondary", "ghost", "tertiary"],
771
1010
  css: {
772
- _focus: {
1011
+ _focusVisible: {
773
1012
  borderColor: "blue.400",
774
1013
  boxShadow: "focus",
775
1014
  _nextTheme: {
@@ -780,7 +1019,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
780
1019
  }
781
1020
  },
782
1021
  {
783
- variant: ["primary", "secondary", "ghost", "danger"],
1022
+ variant: ["primary", "secondary", "ghost", "danger", "tertiary"],
784
1023
  css: {
785
1024
  _disabled: {
786
1025
  cursor: "not-allowed",
@@ -789,7 +1028,15 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
789
1028
  borderColor: "gray.50",
790
1029
  _hover: {
791
1030
  background: "gray.50",
792
- borderColor: "gray.50"
1031
+ borderColor: "gray.50",
1032
+ _hasIcon: {
1033
+ background: "transparent",
1034
+ borderColor: "transparent"
1035
+ }
1036
+ },
1037
+ _hasIcon: {
1038
+ background: "transparent",
1039
+ borderColor: "transparent"
793
1040
  },
794
1041
  _nextTheme: {
795
1042
  color: "text.disabled",
@@ -797,7 +1044,15 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
797
1044
  borderColor: "background.disabled",
798
1045
  _hover: {
799
1046
  background: "background.disabled",
800
- borderColor: "background.disabled"
1047
+ borderColor: "background.disabled",
1048
+ _hasIcon: {
1049
+ background: "transparent",
1050
+ borderColor: "transparent"
1051
+ }
1052
+ },
1053
+ _hasIcon: {
1054
+ background: "transparent",
1055
+ borderColor: "transparent"
801
1056
  }
802
1057
  }
803
1058
  }
@@ -811,7 +1066,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
811
1066
  // TODO: Check why this recipe need to generate statically
812
1067
  staticCss: ["*"]
813
1068
  });
814
- var buttonGroupRecipe = (0, import_dev5.defineRecipe)({
1069
+ var buttonGroupRecipe = (0, import_dev6.defineRecipe)({
815
1070
  className: "pixel-button-group",
816
1071
  jsx: ["MpButtonGroup"],
817
1072
  base: {
@@ -836,8 +1091,8 @@ var buttonGroupRecipe = (0, import_dev5.defineRecipe)({
836
1091
  });
837
1092
 
838
1093
  // src/recipes/input.ts
839
- var import_dev6 = require("@pandacss/dev");
840
- var inputSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1094
+ var import_dev7 = require("@pandacss/dev");
1095
+ var inputSlotRecipe = (0, import_dev7.defineSlotRecipe)({
841
1096
  className: "input",
842
1097
  jsx: ["MpInput", "mp-input"],
843
1098
  slots: ["root", "control", "clear"],
@@ -873,7 +1128,7 @@ var inputSlotRecipe = (0, import_dev6.defineSlotRecipe)({
873
1128
  paddingInline: "3",
874
1129
  appearance: "none",
875
1130
  caretColor: "blue.500",
876
- transition: "all 250ms",
1131
+ transition: "border-color 250ms, background-color 250ms",
877
1132
  _isFullWidth: {
878
1133
  width: "full"
879
1134
  },
@@ -1018,7 +1273,7 @@ var inputSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1018
1273
  // TODO: Check why this recipe need to generate statically
1019
1274
  staticCss: ["*"]
1020
1275
  });
1021
- var inputGroupSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1276
+ var inputGroupSlotRecipe = (0, import_dev7.defineSlotRecipe)({
1022
1277
  className: "input-group",
1023
1278
  jsx: ["MpInputGroup", "mp-input-group"],
1024
1279
  slots: ["root"],
@@ -1030,7 +1285,7 @@ var inputGroupSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1030
1285
  width: "full",
1031
1286
  "&[data-with-left-addon=true]": {
1032
1287
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
1033
- paddingLeft: "calc(var(--mp-input-offset--left) + 24px)"
1288
+ paddingLeft: "calc(var(--mp-input-offset--left) + 14px)"
1034
1289
  }
1035
1290
  },
1036
1291
  "&[data-with-clearable=true]": {
@@ -1048,14 +1303,14 @@ var inputGroupSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1048
1303
  },
1049
1304
  "&[data-with-right-addon=true]": {
1050
1305
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
1051
- paddingRight: "calc(var(--mp-input-offset--right) + 24px)"
1306
+ paddingRight: "calc(var(--mp-input-offset--right) + 14px)"
1052
1307
  },
1053
1308
  "&[data-with-clearable=true]": {
1054
1309
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
1055
1310
  paddingRight: "calc(var(--mp-input-offset--right) + 54px)"
1056
1311
  },
1057
1312
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputClear]": {
1058
- "--mp-input--right": "calc(var(--mp-input-offset--right) + 24px)"
1313
+ "--mp-input--right": "calc(var(--mp-input-offset--right) + 14px)"
1059
1314
  }
1060
1315
  }
1061
1316
  },
@@ -1089,7 +1344,7 @@ var inputGroupSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1089
1344
  compoundVariants: [],
1090
1345
  defaultVariants: {}
1091
1346
  });
1092
- var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1347
+ var inputAddonSlotRecipe = (0, import_dev7.defineSlotRecipe)({
1093
1348
  className: "input-addon",
1094
1349
  jsx: ["MpInputAddon", "mp-input-addon"],
1095
1350
  slots: ["root"],
@@ -1116,16 +1371,20 @@ var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1116
1371
  placement: {
1117
1372
  left: {
1118
1373
  root: {
1119
- left: "3",
1374
+ left: "2",
1120
1375
  borderTopRightRadius: "none!",
1121
- borderBottomRightRadius: "none!"
1376
+ borderBottomRightRadius: "none!",
1377
+ minWidth: "32px",
1378
+ justifyContent: "center"
1122
1379
  }
1123
1380
  },
1124
1381
  right: {
1125
1382
  root: {
1126
- right: "3",
1383
+ right: "2",
1127
1384
  borderTopLeftRadius: "none!",
1128
- borderBottomLeftRadius: "none!"
1385
+ borderBottomLeftRadius: "none!",
1386
+ minWidth: "32px",
1387
+ justifyContent: "center"
1129
1388
  }
1130
1389
  }
1131
1390
  },
@@ -1135,8 +1394,16 @@ var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1135
1394
  height: "6.5",
1136
1395
  borderRadius: "2xs",
1137
1396
  _hasBackground: {
1138
- _placementLeft: { left: "0.5" },
1139
- _placementRight: { right: "0.5" }
1397
+ _placementLeft: {
1398
+ left: "0.5",
1399
+ minWidth: "24px",
1400
+ justifyContent: "center"
1401
+ },
1402
+ _placementRight: {
1403
+ right: "0.5",
1404
+ minWidth: "24px",
1405
+ justifyContent: "center"
1406
+ }
1140
1407
  }
1141
1408
  }
1142
1409
  },
@@ -1145,8 +1412,16 @@ var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1145
1412
  height: "32px",
1146
1413
  borderRadius: "sm",
1147
1414
  _hasBackground: {
1148
- _placementLeft: { left: "3px" },
1149
- _placementRight: { right: "3px" }
1415
+ _placementLeft: {
1416
+ left: "3px",
1417
+ minWidth: "32px",
1418
+ justifyContent: "center"
1419
+ },
1420
+ _placementRight: {
1421
+ right: "3px",
1422
+ minWidth: "32px",
1423
+ justifyContent: "center"
1424
+ }
1150
1425
  }
1151
1426
  }
1152
1427
  }
@@ -1162,8 +1437,8 @@ var inputAddonSlotRecipe = (0, import_dev6.defineSlotRecipe)({
1162
1437
  });
1163
1438
 
1164
1439
  // src/recipes/select.ts
1165
- var import_dev7 = require("@pandacss/dev");
1166
- var selectSlotRecipe = (0, import_dev7.defineSlotRecipe)({
1440
+ var import_dev8 = require("@pandacss/dev");
1441
+ var selectSlotRecipe = (0, import_dev8.defineSlotRecipe)({
1167
1442
  className: "select",
1168
1443
  jsx: ["MpSelect", "mp-select"],
1169
1444
  slots: ["root", "control", "clear", "arrow"],
@@ -1317,13 +1592,12 @@ var selectSlotRecipe = (0, import_dev7.defineSlotRecipe)({
1317
1592
  });
1318
1593
 
1319
1594
  // src/recipes/text.ts
1320
- var import_dev8 = require("@pandacss/dev");
1321
- var textRecipe = (0, import_dev8.defineRecipe)({
1595
+ var import_dev9 = require("@pandacss/dev");
1596
+ var textRecipe = (0, import_dev9.defineRecipe)({
1322
1597
  className: "text",
1323
1598
  jsx: ["MpText", "mp-text"],
1324
1599
  base: {
1325
1600
  color: "var(--mp-text-color)",
1326
- fontVariantNumeric: "lining-nums tabular-nums",
1327
1601
  "&[data-text-strike=true]": {
1328
1602
  textDecoration: "line-through"
1329
1603
  },
@@ -1375,8 +1649,8 @@ var textRecipe = (0, import_dev8.defineRecipe)({
1375
1649
  });
1376
1650
 
1377
1651
  // src/recipes/icon.ts
1378
- var import_dev9 = require("@pandacss/dev");
1379
- var iconRecipe = (0, import_dev9.defineRecipe)({
1652
+ var import_dev10 = require("@pandacss/dev");
1653
+ var iconRecipe = (0, import_dev10.defineRecipe)({
1380
1654
  className: "icon",
1381
1655
  jsx: ["MpIcon", "mp-icon"],
1382
1656
  base: {
@@ -1387,7 +1661,9 @@ var iconRecipe = (0, import_dev9.defineRecipe)({
1387
1661
  flexShrink: 0,
1388
1662
  "&:not(:root)": {
1389
1663
  overflow: "hidden"
1390
- }
1664
+ },
1665
+ width: "var(--mp-icon-size)",
1666
+ height: "var(--mp-icon-size)"
1391
1667
  },
1392
1668
  variants: {
1393
1669
  size: {
@@ -1409,8 +1685,8 @@ var iconRecipe = (0, import_dev9.defineRecipe)({
1409
1685
  });
1410
1686
 
1411
1687
  // src/recipes/spinner.ts
1412
- var import_dev10 = require("@pandacss/dev");
1413
- var spinnerRecipe = (0, import_dev10.defineRecipe)({
1688
+ var import_dev11 = require("@pandacss/dev");
1689
+ var spinnerRecipe = (0, import_dev11.defineRecipe)({
1414
1690
  className: "spinner",
1415
1691
  jsx: ["MpSpinner", "mp-spinner"],
1416
1692
  base: {
@@ -1435,10 +1711,10 @@ var spinnerRecipe = (0, import_dev10.defineRecipe)({
1435
1711
  });
1436
1712
 
1437
1713
  // src/recipes/accordion.ts
1438
- var import_dev11 = require("@pandacss/dev");
1439
- var accordionSlotRecipe = (0, import_dev11.defineSlotRecipe)({
1714
+ var import_dev12 = require("@pandacss/dev");
1715
+ var accordionSlotRecipe = (0, import_dev12.defineSlotRecipe)({
1440
1716
  className: "accordion",
1441
- slots: ["header", "item", "panel"],
1717
+ slots: ["header", "headerTitle", "headerDescription", "item", "panel"],
1442
1718
  jsx: [
1443
1719
  "MpAccordionHeader",
1444
1720
  "MpAccordionItem",
@@ -1449,35 +1725,52 @@ var accordionSlotRecipe = (0, import_dev11.defineSlotRecipe)({
1449
1725
  ],
1450
1726
  base: {
1451
1727
  header: {
1728
+ display: "flex",
1729
+ flexDirection: "column",
1730
+ alignItems: "flex-start",
1731
+ pt: 3,
1732
+ _disabled: { opacity: "0.4", cursor: "not-allowed" }
1733
+ },
1734
+ headerTitle: {
1452
1735
  display: "flex",
1453
1736
  alignItems: "center",
1737
+ gap: 2,
1454
1738
  width: "100%",
1455
1739
  outline: 0,
1456
- gap: 4,
1457
- transition: "all 0.2s",
1458
- py: 3,
1459
1740
  fontWeight: "semiBold",
1460
- fontSize: "md",
1741
+ fontSize: "xl",
1461
1742
  color: "dark",
1462
- _disabled: { opacity: "0.4", cursor: "not-allowed" },
1743
+ transition: "all 0.2s",
1463
1744
  _nextTheme: {
1464
1745
  color: "text.default"
1465
1746
  }
1466
1747
  },
1748
+ headerDescription: {
1749
+ color: "gray.600",
1750
+ lineHeight: "md",
1751
+ _nextTheme: {
1752
+ color: "text.secondary"
1753
+ }
1754
+ },
1467
1755
  item: {
1468
1756
  borderBottomWidth: "1px",
1469
1757
  borderColor: "gray.100",
1758
+ pb: 3,
1470
1759
  _last: {
1471
1760
  borderBottomWidth: "1px",
1472
1761
  borderColor: "gray.100",
1473
- _nextTheme: { borderColor: "border.default" }
1762
+ _nextTheme: { borderColor: "transparent" }
1474
1763
  },
1475
1764
  _nextTheme: {
1476
1765
  borderColor: "border.default"
1477
1766
  }
1478
1767
  },
1479
1768
  panel: {
1480
- py: 3
1769
+ pt: 2,
1770
+ color: "gray.600",
1771
+ _nextTheme: {
1772
+ color: "text.secondary"
1773
+ }
1481
1774
  }
1482
1775
  },
1483
1776
  variants: {
@@ -1492,16 +1785,39 @@ var accordionSlotRecipe = (0, import_dev11.defineSlotRecipe)({
1492
1785
  cursor: "default"
1493
1786
  }
1494
1787
  }
1788
+ },
1789
+ iconPosition: {
1790
+ start: {
1791
+ headerDescription: {
1792
+ pl: 8
1793
+ },
1794
+ panel: {
1795
+ pl: 8
1796
+ }
1797
+ },
1798
+ end: {
1799
+ headerDescription: {
1800
+ pl: 0
1801
+ },
1802
+ panel: {
1803
+ pl: 0
1804
+ }
1805
+ }
1495
1806
  }
1496
1807
  },
1497
1808
  defaultVariants: {
1498
- isClickable: true
1499
- }
1809
+ isClickable: true,
1810
+ iconPosition: "end"
1811
+ },
1812
+ staticCss: [
1813
+ // Need to generate statically as `start` and `end` values are runtime-determined.
1814
+ { iconPosition: ["*"] }
1815
+ ]
1500
1816
  });
1501
1817
 
1502
1818
  // src/recipes/popover.ts
1503
- var import_dev12 = require("@pandacss/dev");
1504
- var popoverContentRecipe = (0, import_dev12.defineRecipe)({
1819
+ var import_dev13 = require("@pandacss/dev");
1820
+ var popoverContentRecipe = (0, import_dev13.defineRecipe)({
1505
1821
  className: "popover",
1506
1822
  jsx: ["MpPopover", "mp-popover"],
1507
1823
  base: {},
@@ -1537,7 +1853,7 @@ var popoverContentRecipe = (0, import_dev12.defineRecipe)({
1537
1853
  isUnstyled: false
1538
1854
  }
1539
1855
  });
1540
- var popoverListRecipe = (0, import_dev12.defineRecipe)({
1856
+ var popoverListRecipe = (0, import_dev13.defineRecipe)({
1541
1857
  className: "popover-list",
1542
1858
  jsx: ["MpPopoverList", "mp-popover-list"],
1543
1859
  base: {
@@ -1548,7 +1864,7 @@ var popoverListRecipe = (0, import_dev12.defineRecipe)({
1548
1864
  flexDirection: "column"
1549
1865
  }
1550
1866
  });
1551
- var popoverListItemRecipe = (0, import_dev12.defineRecipe)({
1867
+ var popoverListItemRecipe = (0, import_dev13.defineRecipe)({
1552
1868
  className: "popover-list-item",
1553
1869
  jsx: ["MpPopoverListItem", "mp-popover-list-item"],
1554
1870
  base: {
@@ -1598,8 +1914,8 @@ var popoverListItemRecipe = (0, import_dev12.defineRecipe)({
1598
1914
  });
1599
1915
 
1600
1916
  // src/recipes/badge.ts
1601
- var import_dev13 = require("@pandacss/dev");
1602
- var badgeRecipe = (0, import_dev13.defineRecipe)({
1917
+ var import_dev14 = require("@pandacss/dev");
1918
+ var badgeRecipe = (0, import_dev14.defineRecipe)({
1603
1919
  className: "badge",
1604
1920
  jsx: ["MpBadge", "mp-badge"],
1605
1921
  base: {
@@ -1882,8 +2198,8 @@ var badgeRecipe = (0, import_dev13.defineRecipe)({
1882
2198
  });
1883
2199
 
1884
2200
  // src/recipes/textarea.ts
1885
- var import_dev14 = require("@pandacss/dev");
1886
- var textareaRecipe = (0, import_dev14.defineRecipe)({
2201
+ var import_dev15 = require("@pandacss/dev");
2202
+ var textareaRecipe = (0, import_dev15.defineRecipe)({
1887
2203
  className: "textarea",
1888
2204
  jsx: ["MpTextarea", "mp-textarea"],
1889
2205
  base: {
@@ -1893,8 +2209,8 @@ var textareaRecipe = (0, import_dev14.defineRecipe)({
1893
2209
  });
1894
2210
 
1895
2211
  // src/recipes/tooltip.ts
1896
- var import_dev15 = require("@pandacss/dev");
1897
- var tooltipRecipe = (0, import_dev15.defineRecipe)({
2212
+ var import_dev16 = require("@pandacss/dev");
2213
+ var tooltipRecipe = (0, import_dev16.defineRecipe)({
1898
2214
  className: "tooltip",
1899
2215
  jsx: ["MpTooltip", "mp-tooltip"],
1900
2216
  base: {
@@ -1904,6 +2220,7 @@ var tooltipRecipe = (0, import_dev15.defineRecipe)({
1904
2220
  fontWeight: "regular",
1905
2221
  pointerEvents: "none",
1906
2222
  fontSize: "sm",
2223
+ lineHeight: "20px",
1907
2224
  shadow: "md",
1908
2225
  maxW: "300px",
1909
2226
  zIndex: "tooltip",
@@ -1920,8 +2237,8 @@ var tooltipRecipe = (0, import_dev15.defineRecipe)({
1920
2237
  });
1921
2238
 
1922
2239
  // src/recipes/tabs.ts
1923
- var import_dev16 = require("@pandacss/dev");
1924
- var tabListSlotRecipe = (0, import_dev16.defineSlotRecipe)({
2240
+ var import_dev17 = require("@pandacss/dev");
2241
+ var tabListSlotRecipe = (0, import_dev17.defineSlotRecipe)({
1925
2242
  className: "tab-list",
1926
2243
  jsx: ["MpTabList", "mp-tab-list"],
1927
2244
  slots: ["root", "list"],
@@ -1960,7 +2277,7 @@ var tabListSlotRecipe = (0, import_dev16.defineSlotRecipe)({
1960
2277
  }
1961
2278
  }
1962
2279
  });
1963
- var tabRecipe = (0, import_dev16.defineRecipe)({
2280
+ var tabRecipe = (0, import_dev17.defineRecipe)({
1964
2281
  className: "tab",
1965
2282
  jsx: ["MpTab", "mp-tab"],
1966
2283
  base: {
@@ -1982,7 +2299,7 @@ var tabRecipe = (0, import_dev16.defineRecipe)({
1982
2299
  opacity: 0.4,
1983
2300
  cursor: "not-allowed"
1984
2301
  },
1985
- _focus: {
2302
+ _focusVisible: {
1986
2303
  shadow: "0 0 0 2px #E0EEFF",
1987
2304
  borderRadius: "sm"
1988
2305
  },
@@ -1991,7 +2308,7 @@ var tabRecipe = (0, import_dev16.defineRecipe)({
1991
2308
  _hover: {
1992
2309
  color: "text.default"
1993
2310
  },
1994
- _focus: {
2311
+ _focusVisible: {
1995
2312
  shadow: "0 0 0 2px var(--mp-colors-border-focused)"
1996
2313
  }
1997
2314
  }
@@ -2071,7 +2388,7 @@ var tabRecipe = (0, import_dev16.defineRecipe)({
2071
2388
  isSelected: false
2072
2389
  }
2073
2390
  });
2074
- var tabSelectedBorderRecipe = (0, import_dev16.defineRecipe)({
2391
+ var tabSelectedBorderRecipe = (0, import_dev17.defineRecipe)({
2075
2392
  className: "tab-selected-border",
2076
2393
  jsx: ["MpTabSelectedBorder", "mp-tab-selected-border"],
2077
2394
  base: {
@@ -2168,8 +2485,8 @@ var tabSelectedBorderRecipe = (0, import_dev16.defineRecipe)({
2168
2485
  });
2169
2486
 
2170
2487
  // src/recipes/checkbox.ts
2171
- var import_dev17 = require("@pandacss/dev");
2172
- var checkboxSlotRecipe = (0, import_dev17.defineSlotRecipe)({
2488
+ var import_dev18 = require("@pandacss/dev");
2489
+ var checkboxSlotRecipe = (0, import_dev18.defineSlotRecipe)({
2173
2490
  className: "checkbox",
2174
2491
  jsx: ["MpCheckbox", "mp-checkbox"],
2175
2492
  slots: ["root", "control", "label"],
@@ -2190,12 +2507,14 @@ var checkboxSlotRecipe = (0, import_dev17.defineSlotRecipe)({
2190
2507
  }
2191
2508
  },
2192
2509
  "& .mp-shared__hidden": {
2193
- "&:focus + .mp-checkbox__control": {
2194
- borderColor: "blue.400",
2195
- boxShadow: "focus",
2196
- _nextTheme: {
2197
- borderColor: "border.focused",
2198
- boxShadow: "0 0 0 1px {colors.border.focused}"
2510
+ _focusVisible: {
2511
+ "& + .mp-checkbox__control": {
2512
+ borderColor: "blue.400",
2513
+ boxShadow: "focus",
2514
+ _nextTheme: {
2515
+ borderColor: "border.focused",
2516
+ boxShadow: "0 0 0 1px {colors.border.focused}"
2517
+ }
2199
2518
  }
2200
2519
  }
2201
2520
  },
@@ -2314,8 +2633,8 @@ var checkboxSlotRecipe = (0, import_dev17.defineSlotRecipe)({
2314
2633
  });
2315
2634
 
2316
2635
  // src/recipes/radio.ts
2317
- var import_dev18 = require("@pandacss/dev");
2318
- var radioSlotRecipe = (0, import_dev18.defineSlotRecipe)({
2636
+ var import_dev19 = require("@pandacss/dev");
2637
+ var radioSlotRecipe = (0, import_dev19.defineSlotRecipe)({
2319
2638
  className: "radio",
2320
2639
  jsx: ["MpRadio", "mp-radio"],
2321
2640
  slots: ["root", "control", "label"],
@@ -2336,12 +2655,14 @@ var radioSlotRecipe = (0, import_dev18.defineSlotRecipe)({
2336
2655
  }
2337
2656
  },
2338
2657
  "& .mp-shared__hidden": {
2339
- "&:focus + .mp-radio__control": {
2340
- borderColor: "blue.400",
2341
- boxShadow: "focus",
2342
- _nextTheme: {
2343
- borderColor: "border.focused",
2344
- boxShadow: "0 0 0 1px {colors.border.focused}"
2658
+ _focusVisible: {
2659
+ "& + .mp-radio__control": {
2660
+ borderColor: "blue.400",
2661
+ boxShadow: "focus",
2662
+ _nextTheme: {
2663
+ borderColor: "border.focused",
2664
+ boxShadow: "0 0 0 1px {colors.border.focused}"
2665
+ }
2345
2666
  }
2346
2667
  }
2347
2668
  },
@@ -2445,8 +2766,8 @@ var radioSlotRecipe = (0, import_dev18.defineSlotRecipe)({
2445
2766
  });
2446
2767
 
2447
2768
  // src/recipes/shared.ts
2448
- var import_dev19 = require("@pandacss/dev");
2449
- var sharedSlotRecipe = (0, import_dev19.defineSlotRecipe)({
2769
+ var import_dev20 = require("@pandacss/dev");
2770
+ var sharedSlotRecipe = (0, import_dev20.defineSlotRecipe)({
2450
2771
  className: "shared",
2451
2772
  jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
2452
2773
  slots: ["hidden"],
@@ -2463,8 +2784,8 @@ var sharedSlotRecipe = (0, import_dev19.defineSlotRecipe)({
2463
2784
  });
2464
2785
 
2465
2786
  // src/recipes/toggle.ts
2466
- var import_dev20 = require("@pandacss/dev");
2467
- var toggleSlotRecipe = (0, import_dev20.defineSlotRecipe)({
2787
+ var import_dev21 = require("@pandacss/dev");
2788
+ var toggleSlotRecipe = (0, import_dev21.defineSlotRecipe)({
2468
2789
  className: "toggle",
2469
2790
  jsx: ["MpToggle", "mp-toggle"],
2470
2791
  slots: ["root", "control", "label"],
@@ -2485,12 +2806,14 @@ var toggleSlotRecipe = (0, import_dev20.defineSlotRecipe)({
2485
2806
  }
2486
2807
  },
2487
2808
  "& .mp-shared__hidden": {
2488
- "&:focus + .mp-toggle__control": {
2489
- borderColor: "blue.400",
2490
- boxShadow: "focus",
2491
- _nextTheme: {
2492
- borderColor: "border.focused",
2493
- boxShadow: "0 0 0 1px {colors.border.focused}"
2809
+ _focusVisible: {
2810
+ "& + .mp-toggle__control": {
2811
+ borderColor: "blue.400",
2812
+ boxShadow: "focus",
2813
+ _nextTheme: {
2814
+ borderColor: "border.focused",
2815
+ boxShadow: "0 0 0 1px {colors.border.focused}"
2816
+ }
2494
2817
  }
2495
2818
  }
2496
2819
  },
@@ -2606,8 +2929,8 @@ var toggleSlotRecipe = (0, import_dev20.defineSlotRecipe)({
2606
2929
  });
2607
2930
 
2608
2931
  // src/recipes/table.ts
2609
- var import_dev21 = require("@pandacss/dev");
2610
- var tableRecipe = (0, import_dev21.defineRecipe)({
2932
+ var import_dev22 = require("@pandacss/dev");
2933
+ var tableRecipe = (0, import_dev22.defineRecipe)({
2611
2934
  className: "table",
2612
2935
  jsx: ["MpTable", "mp-table"],
2613
2936
  base: {
@@ -2688,7 +3011,7 @@ var tableRecipe = (0, import_dev21.defineRecipe)({
2688
3011
  }
2689
3012
  }
2690
3013
  });
2691
- var tableContainerRecipe = (0, import_dev21.defineRecipe)({
3014
+ var tableContainerRecipe = (0, import_dev22.defineRecipe)({
2692
3015
  className: "table-container",
2693
3016
  jsx: ["MpTableContainer", "mp-table-container"],
2694
3017
  base: {
@@ -2732,8 +3055,8 @@ var tableContainerRecipe = (0, import_dev21.defineRecipe)({
2732
3055
  });
2733
3056
 
2734
3057
  // src/recipes/progress.ts
2735
- var import_dev22 = require("@pandacss/dev");
2736
- var progressSlotRecipe = (0, import_dev22.defineSlotRecipe)({
3058
+ var import_dev23 = require("@pandacss/dev");
3059
+ var progressSlotRecipe = (0, import_dev23.defineSlotRecipe)({
2737
3060
  className: "progress",
2738
3061
  jsx: ["MpProgress", "mp-progress"],
2739
3062
  slots: ["root", "linear", "circularBase", "circularTrack"],
@@ -2812,8 +3135,8 @@ var progressSlotRecipe = (0, import_dev22.defineSlotRecipe)({
2812
3135
  });
2813
3136
 
2814
3137
  // src/recipes/form-control.ts
2815
- var import_dev23 = require("@pandacss/dev");
2816
- var formControlSlotRecipe = (0, import_dev23.defineSlotRecipe)({
3138
+ var import_dev24 = require("@pandacss/dev");
3139
+ var formControlSlotRecipe = (0, import_dev24.defineSlotRecipe)({
2817
3140
  className: "form-control",
2818
3141
  jsx: ["MpFormControl", "mp-form-control"],
2819
3142
  slots: ["root", "label", "required", "helpText", "errorMessage"],
@@ -2860,8 +3183,8 @@ var formControlSlotRecipe = (0, import_dev23.defineSlotRecipe)({
2860
3183
  });
2861
3184
 
2862
3185
  // src/recipes/input-tag.ts
2863
- var import_dev24 = require("@pandacss/dev");
2864
- var inputTagSlotRecipe = (0, import_dev24.defineSlotRecipe)({
3186
+ var import_dev25 = require("@pandacss/dev");
3187
+ var inputTagSlotRecipe = (0, import_dev25.defineSlotRecipe)({
2865
3188
  className: "input-tag",
2866
3189
  jsx: ["MpInputTag", "mp-input-tag"],
2867
3190
  slots: [
@@ -3017,8 +3340,8 @@ var inputTagSlotRecipe = (0, import_dev24.defineSlotRecipe)({
3017
3340
  });
3018
3341
 
3019
3342
  // src/recipes/divider.ts
3020
- var import_dev25 = require("@pandacss/dev");
3021
- var dividerRecipe = (0, import_dev25.defineRecipe)({
3343
+ var import_dev26 = require("@pandacss/dev");
3344
+ var dividerRecipe = (0, import_dev26.defineRecipe)({
3022
3345
  className: "divider",
3023
3346
  jsx: ["MpDivider", "mp-divider"],
3024
3347
  base: {
@@ -3059,8 +3382,8 @@ var dividerRecipe = (0, import_dev25.defineRecipe)({
3059
3382
  });
3060
3383
 
3061
3384
  // src/recipes/modal.ts
3062
- var import_dev26 = require("@pandacss/dev");
3063
- var modalSlotRecipe = (0, import_dev26.defineSlotRecipe)({
3385
+ var import_dev27 = require("@pandacss/dev");
3386
+ var modalSlotRecipe = (0, import_dev27.defineSlotRecipe)({
3064
3387
  className: "modal",
3065
3388
  description: "The styles for the Modal component",
3066
3389
  jsx: ["MpModal", "mp-modal"],
@@ -3113,7 +3436,10 @@ var modalSlotRecipe = (0, import_dev26.defineSlotRecipe)({
3113
3436
  _nextTheme: {
3114
3437
  background: "background.stage",
3115
3438
  borderColor: "border.bold",
3116
- color: "text.default"
3439
+ color: "text.default",
3440
+ '&[data-modal-type="drawer"]': {
3441
+ borderColor: "border.default"
3442
+ }
3117
3443
  }
3118
3444
  },
3119
3445
  header: {
@@ -3131,6 +3457,10 @@ var modalSlotRecipe = (0, import_dev26.defineSlotRecipe)({
3131
3457
  color: "text.default",
3132
3458
  background: "background.neutral.subtle",
3133
3459
  borderBottomColor: "border.default"
3460
+ },
3461
+ '&[data-modal-presentation="drawer"]': {
3462
+ borderTopLeftRadius: "none",
3463
+ borderTopRightRadius: "none"
3134
3464
  }
3135
3465
  },
3136
3466
  closeButton: {
@@ -3187,8 +3517,8 @@ var modalSlotRecipe = (0, import_dev26.defineSlotRecipe)({
3187
3517
  });
3188
3518
 
3189
3519
  // src/recipes/upload.ts
3190
- var import_dev27 = require("@pandacss/dev");
3191
- var uploadSlotRecipe = (0, import_dev27.defineSlotRecipe)({
3520
+ var import_dev28 = require("@pandacss/dev");
3521
+ var uploadSlotRecipe = (0, import_dev28.defineSlotRecipe)({
3192
3522
  className: "upload",
3193
3523
  jsx: ["MpUpload", "mp-upload"],
3194
3524
  slots: ["root", "resetButton"],
@@ -3273,7 +3603,7 @@ var uploadSlotRecipe = (0, import_dev27.defineSlotRecipe)({
3273
3603
  }
3274
3604
  }
3275
3605
  });
3276
- var uploadListSlotRecipe = (0, import_dev27.defineSlotRecipe)({
3606
+ var uploadListSlotRecipe = (0, import_dev28.defineSlotRecipe)({
3277
3607
  className: "upload-list",
3278
3608
  jsx: ["MpUploadList", "mp-upload-list"],
3279
3609
  slots: ["root", "titleWrapper", "actionWrapper"],
@@ -3316,8 +3646,8 @@ var uploadListSlotRecipe = (0, import_dev27.defineSlotRecipe)({
3316
3646
  });
3317
3647
 
3318
3648
  // src/recipes/dropzone.ts
3319
- var import_dev28 = require("@pandacss/dev");
3320
- var dropzoneSlotRecipe = (0, import_dev28.defineSlotRecipe)({
3649
+ var import_dev29 = require("@pandacss/dev");
3650
+ var dropzoneSlotRecipe = (0, import_dev29.defineSlotRecipe)({
3321
3651
  className: "dropzone",
3322
3652
  jsx: ["MpDropzone", "mp-dropzone"],
3323
3653
  slots: [
@@ -3386,7 +3716,7 @@ var dropzoneSlotRecipe = (0, import_dev28.defineSlotRecipe)({
3386
3716
  boxShadow: "focus",
3387
3717
  borderColor: "blue.400",
3388
3718
  _nextTheme: {
3389
- boxShadow: "focus",
3719
+ boxShadow: "none",
3390
3720
  borderColor: "border.focused"
3391
3721
  },
3392
3722
  _hover: {
@@ -3546,8 +3876,8 @@ var dropzoneSlotRecipe = (0, import_dev28.defineSlotRecipe)({
3546
3876
  });
3547
3877
 
3548
3878
  // src/recipes/segmented-control.ts
3549
- var import_dev29 = require("@pandacss/dev");
3550
- var segmentedControlSlotRecipe = (0, import_dev29.defineSlotRecipe)({
3879
+ var import_dev30 = require("@pandacss/dev");
3880
+ var segmentedControlSlotRecipe = (0, import_dev30.defineSlotRecipe)({
3551
3881
  className: "segmented-control",
3552
3882
  jsx: ["MpSegmentedControl", "mp-segmented-control"],
3553
3883
  slots: ["root", "item", "hidden", "control", "label", "icon"],
@@ -3633,7 +3963,7 @@ var segmentedControlSlotRecipe = (0, import_dev29.defineSlotRecipe)({
3633
3963
  "input[type=radio]:checked:hover:not(:disabled) + &, input[type=radio][aria-checked=mixed]:hover:not(:disabled) + &": {
3634
3964
  color: "blue.700"
3635
3965
  },
3636
- "input[type=radio]:checked:focus + &, input[type=radio][aria-checked=mixed]:focus + &": {
3966
+ "input[type=radio]:checked:focus-visible + &, input[type=radio][aria-checked=mixed]:focus-visible + &": {
3637
3967
  color: "blue.700",
3638
3968
  boxShadow: "outer",
3639
3969
  _nextTheme: {
@@ -3674,8 +4004,8 @@ var segmentedControlSlotRecipe = (0, import_dev29.defineSlotRecipe)({
3674
4004
  });
3675
4005
 
3676
4006
  // src/recipes/toast.ts
3677
- var import_dev30 = require("@pandacss/dev");
3678
- var toastSlotRecipe = (0, import_dev30.defineSlotRecipe)({
4007
+ var import_dev31 = require("@pandacss/dev");
4008
+ var toastSlotRecipe = (0, import_dev31.defineSlotRecipe)({
3679
4009
  className: "toast",
3680
4010
  jsx: ["MpToast", "mp-toast"],
3681
4011
  slots: ["root", "icon", "label"],
@@ -3684,13 +4014,12 @@ var toastSlotRecipe = (0, import_dev30.defineSlotRecipe)({
3684
4014
  display: "flex",
3685
4015
  alignItems: "center",
3686
4016
  gap: "2",
3687
- width: "356px",
3688
4017
  border: "1.5px solid",
3689
4018
  borderRadius: "md",
3690
4019
  backgroundColor: "white",
3691
4020
  padding: "3",
3692
4021
  boxShadow: "lg",
3693
- zIndex: "9999",
4022
+ zIndex: "1700",
3694
4023
  _nextTheme: {
3695
4024
  backgroundColor: "background.neutral"
3696
4025
  }
@@ -3739,8 +4068,8 @@ var toastSlotRecipe = (0, import_dev30.defineSlotRecipe)({
3739
4068
  });
3740
4069
 
3741
4070
  // src/recipes/broadcast.ts
3742
- var import_dev31 = require("@pandacss/dev");
3743
- var broadcastSlotRecipe = (0, import_dev31.defineSlotRecipe)({
4071
+ var import_dev32 = require("@pandacss/dev");
4072
+ var broadcastSlotRecipe = (0, import_dev32.defineSlotRecipe)({
3744
4073
  className: "broadcast",
3745
4074
  jsx: ["MpBroadcast", "mp-broadcast"],
3746
4075
  slots: ["root", "container", "wrapper", "icon", "label", "textLink", "action", "close"],
@@ -3876,8 +4205,8 @@ var broadcastSlotRecipe = (0, import_dev31.defineSlotRecipe)({
3876
4205
  });
3877
4206
 
3878
4207
  // src/recipes/rich-text-editor.ts
3879
- var import_dev32 = require("@pandacss/dev");
3880
- var richTextEditorSlotRecipe = (0, import_dev32.defineSlotRecipe)({
4208
+ var import_dev33 = require("@pandacss/dev");
4209
+ var richTextEditorSlotRecipe = (0, import_dev33.defineSlotRecipe)({
3881
4210
  className: "rich-text-editor",
3882
4211
  jsx: ["MpRichTextEditor", "mp-rich-text-editor"],
3883
4212
  slots: ["root", "toolbar", "area"],
@@ -3982,7 +4311,7 @@ var richTextEditorSlotRecipe = (0, import_dev32.defineSlotRecipe)({
3982
4311
  compoundVariants: [],
3983
4312
  defaultVariants: {}
3984
4313
  });
3985
- var RTEStyleProviderRecipe = (0, import_dev32.defineRecipe)({
4314
+ var RTEStyleProviderRecipe = (0, import_dev33.defineRecipe)({
3986
4315
  className: "typography-style-provider",
3987
4316
  jsx: ["MpTypographyStyleProvider", "mp-typography-style-provider"],
3988
4317
  base: {
@@ -4039,8 +4368,8 @@ var RTEStyleProviderRecipe = (0, import_dev32.defineRecipe)({
4039
4368
  });
4040
4369
 
4041
4370
  // src/recipes/date-picker.ts
4042
- var import_dev33 = require("@pandacss/dev");
4043
- var datePickerSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4371
+ var import_dev34 = require("@pandacss/dev");
4372
+ var datePickerSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4044
4373
  className: "datepicker",
4045
4374
  jsx: ["MpDatePicker", "mp-date-picker"],
4046
4375
  slots: ["root", "popoverContent"],
@@ -4067,14 +4396,14 @@ var datePickerSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4067
4396
  }
4068
4397
  }
4069
4398
  });
4070
- var calendarPanelRangeRecipe = (0, import_dev33.defineRecipe)({
4399
+ var calendarPanelRangeRecipe = (0, import_dev34.defineRecipe)({
4071
4400
  className: "calendarPanelRange",
4072
4401
  base: {
4073
4402
  display: "grid",
4074
4403
  gridTemplateColumns: "repeat(2, 1fr)"
4075
4404
  }
4076
4405
  });
4077
- var timePanelSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4406
+ var timePanelSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4078
4407
  className: "timePanel",
4079
4408
  slots: ["root", "column"],
4080
4409
  jsx: ["TimePanel", "time-panel"],
@@ -4094,7 +4423,7 @@ var timePanelSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4094
4423
  }
4095
4424
  }
4096
4425
  });
4097
- var tableDateSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4426
+ var tableDateSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4098
4427
  className: "tableDate",
4099
4428
  jsx: ["TableDate", "table-date"],
4100
4429
  slots: [
@@ -4123,7 +4452,7 @@ var tableDateSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4123
4452
  }
4124
4453
  }
4125
4454
  });
4126
- var tableMonthSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4455
+ var tableMonthSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4127
4456
  className: "tableMonth",
4128
4457
  jsx: ["TableMonth", "table-month"],
4129
4458
  slots: ["headerRoot", "headerLabel", "monthItemRoot", "monthItemWrapper", "shortcutLabelWrapper"],
@@ -4144,7 +4473,7 @@ var tableMonthSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4144
4473
  }
4145
4474
  }
4146
4475
  });
4147
- var tableYearSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4476
+ var tableYearSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4148
4477
  className: "tableYear",
4149
4478
  jsx: ["TableYear", "table-year"],
4150
4479
  slots: ["headerRoot", "headerLabel", "yearItemRoot", "yearItemWrapper", "shortcutLabelWrapper"],
@@ -4164,7 +4493,7 @@ var tableYearSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4164
4493
  }
4165
4494
  }
4166
4495
  });
4167
- var dayItemRecipe = (0, import_dev33.defineRecipe)({
4496
+ var dayItemRecipe = (0, import_dev34.defineRecipe)({
4168
4497
  className: "day",
4169
4498
  jsx: ["Day", "day"],
4170
4499
  base: {
@@ -4186,7 +4515,7 @@ var dayItemRecipe = (0, import_dev33.defineRecipe)({
4186
4515
  }
4187
4516
  }
4188
4517
  });
4189
- var dateItemRecipe = (0, import_dev33.defineRecipe)({
4518
+ var dateItemRecipe = (0, import_dev34.defineRecipe)({
4190
4519
  className: "dateItem",
4191
4520
  jsx: ["DateItem", "date-item", "Date", "date"],
4192
4521
  base: {
@@ -4336,7 +4665,7 @@ var dateItemRecipe = (0, import_dev33.defineRecipe)({
4336
4665
  },
4337
4666
  staticCss: ["*"]
4338
4667
  });
4339
- var pinbarSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4668
+ var pinbarSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4340
4669
  className: "pinbar",
4341
4670
  slots: ["root", "pinbar"],
4342
4671
  base: {
@@ -4355,7 +4684,7 @@ var pinbarSlotRecipe = (0, import_dev33.defineSlotRecipe)({
4355
4684
  }
4356
4685
  }
4357
4686
  });
4358
- var monthItemRecipe = (0, import_dev33.defineRecipe)({
4687
+ var monthItemRecipe = (0, import_dev34.defineRecipe)({
4359
4688
  className: "monthItem",
4360
4689
  jsx: ["MonthItem", "month-item"],
4361
4690
  base: {
@@ -4434,7 +4763,7 @@ var monthItemRecipe = (0, import_dev33.defineRecipe)({
4434
4763
  },
4435
4764
  staticCss: ["*"]
4436
4765
  });
4437
- var yearItemRecipe = (0, import_dev33.defineRecipe)({
4766
+ var yearItemRecipe = (0, import_dev34.defineRecipe)({
4438
4767
  className: "yearItem",
4439
4768
  jsx: ["YearItem", "year-item"],
4440
4769
  base: {
@@ -4513,7 +4842,7 @@ var yearItemRecipe = (0, import_dev33.defineRecipe)({
4513
4842
  },
4514
4843
  staticCss: ["*"]
4515
4844
  });
4516
- var timeItemRecipe = (0, import_dev33.defineRecipe)({
4845
+ var timeItemRecipe = (0, import_dev34.defineRecipe)({
4517
4846
  className: "timeItem",
4518
4847
  jsx: ["TimeItem", "time-item"],
4519
4848
  base: {
@@ -4576,8 +4905,8 @@ var timeItemRecipe = (0, import_dev33.defineRecipe)({
4576
4905
  });
4577
4906
 
4578
4907
  // src/recipes/carousel.ts
4579
- var import_dev34 = require("@pandacss/dev");
4580
- var carouselSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4908
+ var import_dev35 = require("@pandacss/dev");
4909
+ var carouselSlotRecipe = (0, import_dev35.defineSlotRecipe)({
4581
4910
  className: "carousel",
4582
4911
  jsx: ["MpCarousel", "mp-carousel"],
4583
4912
  slots: [
@@ -4630,8 +4959,8 @@ var carouselSlotRecipe = (0, import_dev34.defineSlotRecipe)({
4630
4959
  });
4631
4960
 
4632
4961
  // src/recipes/chart.ts
4633
- var import_dev35 = require("@pandacss/dev");
4634
- var chartSlotRecipe = (0, import_dev35.defineSlotRecipe)({
4962
+ var import_dev36 = require("@pandacss/dev");
4963
+ var chartSlotRecipe = (0, import_dev36.defineSlotRecipe)({
4635
4964
  className: "chart",
4636
4965
  jsx: ["MpChart", "mp-chart"],
4637
4966
  slots: [
@@ -4736,8 +5065,8 @@ var chartSlotRecipe = (0, import_dev35.defineSlotRecipe)({
4736
5065
  });
4737
5066
 
4738
5067
  // src/recipes/autocomplete.ts
4739
- var import_dev36 = require("@pandacss/dev");
4740
- var autocompleteSlotRecipe = (0, import_dev36.defineSlotRecipe)({
5068
+ var import_dev37 = require("@pandacss/dev");
5069
+ var autocompleteSlotRecipe = (0, import_dev37.defineSlotRecipe)({
4741
5070
  className: "autocomplete",
4742
5071
  jsx: ["MpAutocomplete", "mp-autocomplete"],
4743
5072
  slots: ["groupText", "popoverContent", "buttonAction", "emptyText", "contentLoading", "input"],
@@ -4791,8 +5120,8 @@ var autocompleteSlotRecipe = (0, import_dev36.defineSlotRecipe)({
4791
5120
  });
4792
5121
 
4793
5122
  // src/recipes/timeline.ts
4794
- var import_dev37 = require("@pandacss/dev");
4795
- var timelineSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5123
+ var import_dev38 = require("@pandacss/dev");
5124
+ var timelineSlotRecipe = (0, import_dev38.defineSlotRecipe)({
4796
5125
  className: "timeline",
4797
5126
  jsx: [
4798
5127
  "MpTimeline",
@@ -4834,7 +5163,7 @@ var timelineSlotRecipe = (0, import_dev37.defineSlotRecipe)({
4834
5163
  }
4835
5164
  }
4836
5165
  });
4837
- var timelineDocumentSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5166
+ var timelineDocumentSlotRecipe = (0, import_dev38.defineSlotRecipe)({
4838
5167
  className: "timelineDocument",
4839
5168
  jsx: ["MpTimelineDocument", "mp-timeline-document"],
4840
5169
  slots: ["root", "content", "title", "description", "fileSize"],
@@ -4892,7 +5221,7 @@ var timelineDocumentSlotRecipe = (0, import_dev37.defineSlotRecipe)({
4892
5221
  icon: false
4893
5222
  }
4894
5223
  });
4895
- var timelineLogSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5224
+ var timelineLogSlotRecipe = (0, import_dev38.defineSlotRecipe)({
4896
5225
  className: "timelineLog",
4897
5226
  jsx: ["MpTimelineLog", "MpTimelineLogItem", "mp-timeline-log", "mp-timeline-log-item"],
4898
5227
  slots: ["root", "log", "logText", "logIcon", "content", "logItem"],
@@ -4924,7 +5253,7 @@ var timelineLogSlotRecipe = (0, import_dev37.defineSlotRecipe)({
4924
5253
  }
4925
5254
  }
4926
5255
  });
4927
- var timelineSeparatorSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5256
+ var timelineSeparatorSlotRecipe = (0, import_dev38.defineSlotRecipe)({
4928
5257
  className: "timelineSeparetor",
4929
5258
  jsx: ["MpTimelineSeparator", "mp-timeline-separator"],
4930
5259
  slots: ["root", "topConnector", "bottomConnector"],
@@ -4956,12 +5285,15 @@ var timelineSeparatorSlotRecipe = (0, import_dev37.defineSlotRecipe)({
4956
5285
  backgroundColor: "transparent"
4957
5286
  },
4958
5287
  _nextTheme: {
4959
- backgroundColor: "border.default"
5288
+ backgroundColor: "border.default",
5289
+ "&[data-position=last]": {
5290
+ backgroundColor: "transparent"
5291
+ }
4960
5292
  }
4961
5293
  }
4962
5294
  }
4963
5295
  });
4964
- var timelineAccordionSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5296
+ var timelineAccordionSlotRecipe = (0, import_dev38.defineSlotRecipe)({
4965
5297
  className: "timelineAccordion",
4966
5298
  jsx: ["MpTimelineAccordion", "mp-timeline-accordion"],
4967
5299
  slots: ["body", "separator", "icon", "topConnector", "bottomConnector", "title", "label"],
@@ -4999,7 +5331,10 @@ var timelineAccordionSlotRecipe = (0, import_dev37.defineSlotRecipe)({
4999
5331
  },
5000
5332
  roundedTop: "full",
5001
5333
  _nextTheme: {
5002
- backgroundColor: "border.default"
5334
+ backgroundColor: "border.default",
5335
+ "&[data-position=last]": {
5336
+ backgroundColor: "transparent"
5337
+ }
5003
5338
  }
5004
5339
  },
5005
5340
  title: {
@@ -5019,8 +5354,8 @@ var timelineAccordionSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5019
5354
  });
5020
5355
 
5021
5356
  // src/recipes/banner.ts
5022
- var import_dev38 = require("@pandacss/dev");
5023
- var bannerSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5357
+ var import_dev39 = require("@pandacss/dev");
5358
+ var bannerSlotRecipe = (0, import_dev39.defineSlotRecipe)({
5024
5359
  className: "banner",
5025
5360
  jsx: ["MpBanner", "mp-banner"],
5026
5361
  slots: ["root", "body"],
@@ -5081,7 +5416,7 @@ var bannerSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5081
5416
  variant: "info"
5082
5417
  }
5083
5418
  });
5084
- var bannerTitleRecipe = (0, import_dev38.defineRecipe)({
5419
+ var bannerTitleRecipe = (0, import_dev39.defineRecipe)({
5085
5420
  className: "banner-title",
5086
5421
  jsx: ["MpBannerTitle", "mp-banner-title"],
5087
5422
  base: {
@@ -5091,7 +5426,6 @@ var bannerTitleRecipe = (0, import_dev38.defineRecipe)({
5091
5426
  lineHeight: "md",
5092
5427
  letterSpacing: "normal",
5093
5428
  color: "dark",
5094
- marginTop: "0.5",
5095
5429
  marginBottom: "1",
5096
5430
  _nextTheme: {
5097
5431
  color: "text.default"
@@ -5101,7 +5435,7 @@ var bannerTitleRecipe = (0, import_dev38.defineRecipe)({
5101
5435
  compoundVariants: [],
5102
5436
  defaultVariants: {}
5103
5437
  });
5104
- var bannerDescriptionRecipe = (0, import_dev38.defineRecipe)({
5438
+ var bannerDescriptionRecipe = (0, import_dev39.defineRecipe)({
5105
5439
  className: "banner-description",
5106
5440
  jsx: ["MpBannerDescription", "mp-banner-description"],
5107
5441
  base: {
@@ -5119,7 +5453,7 @@ var bannerDescriptionRecipe = (0, import_dev38.defineRecipe)({
5119
5453
  compoundVariants: [],
5120
5454
  defaultVariants: {}
5121
5455
  });
5122
- var bannerIconSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5456
+ var bannerIconSlotRecipe = (0, import_dev39.defineSlotRecipe)({
5123
5457
  className: "banner-icon",
5124
5458
  jsx: ["MpBannerIcon", "mp-banner-icon"],
5125
5459
  slots: ["root", "custom"],
@@ -5142,7 +5476,7 @@ var bannerIconSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5142
5476
  compoundVariants: [],
5143
5477
  defaultVariants: {}
5144
5478
  });
5145
- var bannerLinkRecipe = (0, import_dev38.defineRecipe)({
5479
+ var bannerLinkRecipe = (0, import_dev39.defineRecipe)({
5146
5480
  className: "banner-link",
5147
5481
  jsx: ["MpBannerLink", "mp-banner-link"],
5148
5482
  base: {
@@ -5154,7 +5488,7 @@ var bannerLinkRecipe = (0, import_dev38.defineRecipe)({
5154
5488
  compoundVariants: [],
5155
5489
  defaultVariants: {}
5156
5490
  });
5157
- var bannerCloseButtonRecipe = (0, import_dev38.defineRecipe)({
5491
+ var bannerCloseButtonRecipe = (0, import_dev39.defineRecipe)({
5158
5492
  className: "banner-close-button",
5159
5493
  jsx: ["MpBannerCloseButton", "mp-banner-close-button"],
5160
5494
  base: {
@@ -5174,8 +5508,8 @@ var bannerCloseButtonRecipe = (0, import_dev38.defineRecipe)({
5174
5508
  });
5175
5509
 
5176
5510
  // src/recipes/color-picker.ts
5177
- var import_dev39 = require("@pandacss/dev");
5178
- var colorPickerSlotRecipe = (0, import_dev39.defineSlotRecipe)({
5511
+ var import_dev40 = require("@pandacss/dev");
5512
+ var colorPickerSlotRecipe = (0, import_dev40.defineSlotRecipe)({
5179
5513
  className: "color-picker",
5180
5514
  jsx: ["MpColorPicker", "mp-color-picker"],
5181
5515
  slots: [
@@ -5348,8 +5682,8 @@ var colorPickerSlotRecipe = (0, import_dev39.defineSlotRecipe)({
5348
5682
  });
5349
5683
 
5350
5684
  // src/recipes/slider.ts
5351
- var import_dev40 = require("@pandacss/dev");
5352
- var sliderSlotRecipe = (0, import_dev40.defineSlotRecipe)({
5685
+ var import_dev41 = require("@pandacss/dev");
5686
+ var sliderSlotRecipe = (0, import_dev41.defineSlotRecipe)({
5353
5687
  className: "slider",
5354
5688
  jsx: ["MpSlider", "mp-slider"],
5355
5689
  slots: [
@@ -5458,8 +5792,8 @@ var sliderSlotRecipe = (0, import_dev40.defineSlotRecipe)({
5458
5792
  });
5459
5793
 
5460
5794
  // src/recipes/tour.ts
5461
- var import_dev41 = require("@pandacss/dev");
5462
- var tourSlotRecipe = (0, import_dev41.defineSlotRecipe)({
5795
+ var import_dev42 = require("@pandacss/dev");
5796
+ var tourSlotRecipe = (0, import_dev42.defineSlotRecipe)({
5463
5797
  className: "tour",
5464
5798
  jsx: ["MpTour", "mp-tour"],
5465
5799
  slots: ["root", "overlay", "panel"],
@@ -5558,12 +5892,13 @@ var slotRecipes = {
5558
5892
  tabListSlotRecipe,
5559
5893
  colorPickerSlotRecipe,
5560
5894
  sliderSlotRecipe,
5561
- tourSlotRecipe
5895
+ tourSlotRecipe,
5896
+ aireneButtonSlotRecipe
5562
5897
  };
5563
5898
 
5564
5899
  // src/text-styles.ts
5565
- var import_dev42 = require("@pandacss/dev");
5566
- var textStyles = (0, import_dev42.defineTextStyles)({
5900
+ var import_dev43 = require("@pandacss/dev");
5901
+ var textStyles = (0, import_dev43.defineTextStyles)({
5567
5902
  overline: {
5568
5903
  value: {
5569
5904
  fontFamily: "var(--font-inter)",
@@ -5577,7 +5912,7 @@ var textStyles = (0, import_dev42.defineTextStyles)({
5577
5912
  },
5578
5913
  label: {
5579
5914
  sm: { value: { fontFamily: "var(--font-inter)", fontSize: "sm", lineHeight: "sm" } },
5580
- md: { value: { fontFamily: "var(--font-inter)", fontSize: "md", lineHeight: "lg" } }
5915
+ md: { value: { fontFamily: "var(--font-inter)", fontSize: "md", lineHeight: "md" } }
5581
5916
  },
5582
5917
  h3: {
5583
5918
  value: {
@@ -5606,11 +5941,11 @@ var textStyles = (0, import_dev42.defineTextStyles)({
5606
5941
  });
5607
5942
 
5608
5943
  // src/tokens/index.ts
5609
- var import_dev53 = require("@pandacss/dev");
5944
+ var import_dev54 = require("@pandacss/dev");
5610
5945
 
5611
5946
  // src/tokens/borders.ts
5612
- var import_dev43 = require("@pandacss/dev");
5613
- var borderWidths = import_dev43.defineTokens.borderWidths({
5947
+ var import_dev44 = require("@pandacss/dev");
5948
+ var borderWidths = import_dev44.defineTokens.borderWidths({
5614
5949
  none: { value: "none" },
5615
5950
  sm: { value: "1px" },
5616
5951
  md: { value: "1.5px" },
@@ -5618,14 +5953,15 @@ var borderWidths = import_dev43.defineTokens.borderWidths({
5618
5953
  });
5619
5954
 
5620
5955
  // src/tokens/colors.ts
5621
- var import_dev44 = require("@pandacss/dev");
5622
- var colors = import_dev44.defineTokens.colors({
5956
+ var import_dev45 = require("@pandacss/dev");
5957
+ var colors = import_dev45.defineTokens.colors({
5623
5958
  debug: { value: "blue" },
5624
5959
  currentcolor: { value: "currentcolor" },
5625
5960
  dark: { value: "#232933" },
5626
5961
  background: { value: "#F1F5F9" },
5627
5962
  overlay: { value: "rgba(22, 26, 32, 0.8)" },
5628
5963
  white: { value: "#FFFFFF" },
5964
+ vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
5629
5965
  whiteAlpha: {
5630
5966
  50: { value: "rgba(255, 255, 255, 0.04)" },
5631
5967
  100: { value: "rgba(255, 255, 255, 0.06)" },
@@ -5760,16 +6096,16 @@ var colors = import_dev44.defineTokens.colors({
5760
6096
  });
5761
6097
 
5762
6098
  // src/tokens/durations.ts
5763
- var import_dev45 = require("@pandacss/dev");
5764
- var durations = import_dev45.defineTokens.durations({
6099
+ var import_dev46 = require("@pandacss/dev");
6100
+ var durations = import_dev46.defineTokens.durations({
5765
6101
  slow: { value: "100ms" },
5766
6102
  normal: { value: "250ms" },
5767
6103
  fast: { value: "300ms" }
5768
6104
  });
5769
6105
 
5770
6106
  // src/tokens/opacity.ts
5771
- var import_dev46 = require("@pandacss/dev");
5772
- var opacity = import_dev46.defineTokens.opacity({
6107
+ var import_dev47 = require("@pandacss/dev");
6108
+ var opacity = import_dev47.defineTokens.opacity({
5773
6109
  0: { value: 0 },
5774
6110
  40: { value: 0.4 },
5775
6111
  60: { value: 0.6 },
@@ -5777,8 +6113,8 @@ var opacity = import_dev46.defineTokens.opacity({
5777
6113
  });
5778
6114
 
5779
6115
  // src/tokens/radii.ts
5780
- var import_dev47 = require("@pandacss/dev");
5781
- var radii = import_dev47.defineTokens.radii({
6116
+ var import_dev48 = require("@pandacss/dev");
6117
+ var radii = import_dev48.defineTokens.radii({
5782
6118
  none: { value: "0" },
5783
6119
  xs: { value: "0.125rem", description: "2px" },
5784
6120
  sm: { value: "0.25rem", description: "4px" },
@@ -5789,8 +6125,8 @@ var radii = import_dev47.defineTokens.radii({
5789
6125
  });
5790
6126
 
5791
6127
  // src/tokens/shadows.ts
5792
- var import_dev48 = require("@pandacss/dev");
5793
- var shadows = import_dev48.defineTokens.shadows({
6128
+ var import_dev49 = require("@pandacss/dev");
6129
+ var shadows = import_dev49.defineTokens.shadows({
5794
6130
  xs: {
5795
6131
  value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
5796
6132
  },
@@ -5830,8 +6166,8 @@ var shadows = import_dev48.defineTokens.shadows({
5830
6166
  });
5831
6167
 
5832
6168
  // src/tokens/sizes.ts
5833
- var import_dev49 = require("@pandacss/dev");
5834
- var sizes = import_dev49.defineTokens.sizes({
6169
+ var import_dev50 = require("@pandacss/dev");
6170
+ var sizes = import_dev50.defineTokens.sizes({
5835
6171
  0: { value: "0" },
5836
6172
  0.25: { value: "0.0625rem" },
5837
6173
  0.5: { value: "0.125rem" },
@@ -5860,8 +6196,8 @@ var sizes = import_dev49.defineTokens.sizes({
5860
6196
  });
5861
6197
 
5862
6198
  // src/tokens/spacing.ts
5863
- var import_dev50 = require("@pandacss/dev");
5864
- var spacing = import_dev50.defineTokens.spacing({
6199
+ var import_dev51 = require("@pandacss/dev");
6200
+ var spacing = import_dev51.defineTokens.spacing({
5865
6201
  0: { value: "0" },
5866
6202
  0.5: { value: "0.125rem", description: "2px" },
5867
6203
  1: { value: "0.25rem", description: "4px" },
@@ -5882,8 +6218,8 @@ var spacing = import_dev50.defineTokens.spacing({
5882
6218
  });
5883
6219
 
5884
6220
  // src/tokens/z-index.ts
5885
- var import_dev51 = require("@pandacss/dev");
5886
- var zIndex = import_dev51.defineTokens.zIndex({
6221
+ var import_dev52 = require("@pandacss/dev");
6222
+ var zIndex = import_dev52.defineTokens.zIndex({
5887
6223
  hide: { value: -1 },
5888
6224
  base: { value: 0 },
5889
6225
  docked: { value: 10 },
@@ -5895,8 +6231,8 @@ var zIndex = import_dev51.defineTokens.zIndex({
5895
6231
  });
5896
6232
 
5897
6233
  // src/tokens/typography.ts
5898
- var import_dev52 = require("@pandacss/dev");
5899
- var fonts = import_dev52.defineTokens.fonts({
6234
+ var import_dev53 = require("@pandacss/dev");
6235
+ var fonts = import_dev53.defineTokens.fonts({
5900
6236
  body: {
5901
6237
  value: '"Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
5902
6238
  },
@@ -5904,7 +6240,7 @@ var fonts = import_dev52.defineTokens.fonts({
5904
6240
  value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
5905
6241
  }
5906
6242
  });
5907
- var fontSizes = import_dev52.defineTokens.fontSizes({
6243
+ var fontSizes = import_dev53.defineTokens.fontSizes({
5908
6244
  xs: { value: "0.625rem" },
5909
6245
  sm: { value: "0.75rem" },
5910
6246
  md: { value: "0.875rem" },
@@ -5912,12 +6248,12 @@ var fontSizes = import_dev52.defineTokens.fontSizes({
5912
6248
  xl: { value: "1.25rem" },
5913
6249
  "2xl": { value: "1.5rem" }
5914
6250
  });
5915
- var fontWeights = import_dev52.defineTokens.fontWeights({
6251
+ var fontWeights = import_dev53.defineTokens.fontWeights({
5916
6252
  regular: { value: "400" },
5917
6253
  semiBold: { value: "600" },
5918
6254
  bold: { value: "800" }
5919
6255
  });
5920
- var lineHeights = import_dev52.defineTokens.lineHeights({
6256
+ var lineHeights = import_dev53.defineTokens.lineHeights({
5921
6257
  xs: { value: 1.2 },
5922
6258
  sm: { value: 1.34 },
5923
6259
  md: { value: 1.4 },
@@ -5926,7 +6262,7 @@ var lineHeights = import_dev52.defineTokens.lineHeights({
5926
6262
  "2xl": { value: 1.67 },
5927
6263
  "3xl": { value: 1.71 }
5928
6264
  });
5929
- var letterSpacings = import_dev52.defineTokens.letterSpacings({
6265
+ var letterSpacings = import_dev53.defineTokens.letterSpacings({
5930
6266
  tighter: { value: "-0.05em" },
5931
6267
  tight: { value: "-0.025em" },
5932
6268
  normal: { value: "0" },
@@ -5936,7 +6272,7 @@ var letterSpacings = import_dev52.defineTokens.letterSpacings({
5936
6272
  });
5937
6273
 
5938
6274
  // src/tokens/index.ts
5939
- var tokens = (0, import_dev53.defineTokens)({
6275
+ var tokens = (0, import_dev54.defineTokens)({
5940
6276
  borderWidths,
5941
6277
  colors,
5942
6278
  durations,
@@ -5954,11 +6290,11 @@ var tokens = (0, import_dev53.defineTokens)({
5954
6290
  });
5955
6291
 
5956
6292
  // src/tokens-next/index.ts
5957
- var import_dev59 = require("@pandacss/dev");
6293
+ var import_dev60 = require("@pandacss/dev");
5958
6294
 
5959
6295
  // src/tokens-next/borders.ts
5960
- var import_dev54 = require("@pandacss/dev");
5961
- var borderWidths2 = import_dev54.defineTokens.borderWidths({
6296
+ var import_dev55 = require("@pandacss/dev");
6297
+ var borderWidths2 = import_dev55.defineTokens.borderWidths({
5962
6298
  none: { value: "none" },
5963
6299
  sm: { value: "1px" },
5964
6300
  md: { value: "1.5px" },
@@ -5968,11 +6304,12 @@ var borderWidths2 = import_dev54.defineTokens.borderWidths({
5968
6304
  });
5969
6305
 
5970
6306
  // src/tokens-next/colors.ts
5971
- var import_dev55 = require("@pandacss/dev");
5972
- var colors2 = import_dev55.defineTokens.colors({
6307
+ var import_dev56 = require("@pandacss/dev");
6308
+ var colors2 = import_dev56.defineTokens.colors({
5973
6309
  debug: { value: "red" },
5974
6310
  currentcolor: { value: "currentcolor" },
5975
6311
  white: { value: "#FFFFFF" },
6312
+ vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
5976
6313
  dark: {
5977
6314
  "-100": {
5978
6315
  value: "#101214"
@@ -6140,8 +6477,8 @@ var colors2 = import_dev55.defineTokens.colors({
6140
6477
  });
6141
6478
 
6142
6479
  // src/tokens-next/radii.ts
6143
- var import_dev56 = require("@pandacss/dev");
6144
- var radii2 = import_dev56.defineTokens.radii({
6480
+ var import_dev57 = require("@pandacss/dev");
6481
+ var radii2 = import_dev57.defineTokens.radii({
6145
6482
  none: { value: "0" },
6146
6483
  sm: { value: "0.25rem", description: "4px" },
6147
6484
  md: { value: "0.375rem", description: "6px" },
@@ -6151,8 +6488,8 @@ var radii2 = import_dev56.defineTokens.radii({
6151
6488
  });
6152
6489
 
6153
6490
  // src/tokens-next/spacing.ts
6154
- var import_dev57 = require("@pandacss/dev");
6155
- var spacing2 = import_dev57.defineTokens.spacing({
6491
+ var import_dev58 = require("@pandacss/dev");
6492
+ var spacing2 = import_dev58.defineTokens.spacing({
6156
6493
  0: { value: "0" },
6157
6494
  0.5: { value: "0.125rem", description: "2px" },
6158
6495
  1: { value: "0.25rem", description: "4px" },
@@ -6168,8 +6505,8 @@ var spacing2 = import_dev57.defineTokens.spacing({
6168
6505
  });
6169
6506
 
6170
6507
  // src/tokens-next/shadows.ts
6171
- var import_dev58 = require("@pandacss/dev");
6172
- var shadows2 = import_dev58.defineTokens.shadows({
6508
+ var import_dev59 = require("@pandacss/dev");
6509
+ var shadows2 = import_dev59.defineTokens.shadows({
6173
6510
  xs: {
6174
6511
  value: ["0px 2px 4px 0px {colors.background.shadow}", "0px 0px 2px 0px {colors.background.shadow}"]
6175
6512
  },
@@ -6197,7 +6534,7 @@ var shadows2 = import_dev58.defineTokens.shadows({
6197
6534
  });
6198
6535
 
6199
6536
  // src/tokens-next/index.ts
6200
- var tokensNext = (0, import_dev59.defineTokens)({
6537
+ var tokensNext = (0, import_dev60.defineTokens)({
6201
6538
  borderWidths: borderWidths2,
6202
6539
  colors: colors2,
6203
6540
  durations,
@@ -6215,11 +6552,11 @@ var tokensNext = (0, import_dev59.defineTokens)({
6215
6552
  });
6216
6553
 
6217
6554
  // src/semanticTokens/index.ts
6218
- var import_dev62 = require("@pandacss/dev");
6555
+ var import_dev63 = require("@pandacss/dev");
6219
6556
 
6220
6557
  // src/semanticTokens/colors.ts
6221
- var import_dev60 = require("@pandacss/dev");
6222
- var colors3 = import_dev60.defineSemanticTokens.colors({
6558
+ var import_dev61 = require("@pandacss/dev");
6559
+ var colors3 = import_dev61.defineSemanticTokens.colors({
6223
6560
  background: {
6224
6561
  surface: {
6225
6562
  value: {
@@ -7135,8 +7472,8 @@ var colors3 = import_dev60.defineSemanticTokens.colors({
7135
7472
  });
7136
7473
 
7137
7474
  // src/semanticTokens/spacing.ts
7138
- var import_dev61 = require("@pandacss/dev");
7139
- var spacing3 = import_dev61.defineSemanticTokens.spacing({
7475
+ var import_dev62 = require("@pandacss/dev");
7476
+ var spacing3 = import_dev62.defineSemanticTokens.spacing({
7140
7477
  "4xs": {
7141
7478
  value: {
7142
7479
  base: "0.125rem"
@@ -7195,7 +7532,7 @@ var spacing3 = import_dev61.defineSemanticTokens.spacing({
7195
7532
  });
7196
7533
 
7197
7534
  // src/semanticTokens/index.ts
7198
- var semanticTokens = (0, import_dev62.defineSemanticTokens)({
7535
+ var semanticTokens = (0, import_dev63.defineSemanticTokens)({
7199
7536
  colors: colors3,
7200
7537
  spacing: spacing3
7201
7538
  });
@@ -7234,7 +7571,7 @@ var globalFontface = {
7234
7571
  };
7235
7572
 
7236
7573
  // src/index.ts
7237
- var preset = (0, import_dev63.definePreset)({
7574
+ var preset = (0, import_dev64.definePreset)({
7238
7575
  name: "@mekari/pixel3-theme",
7239
7576
  // Main Theme
7240
7577
  theme: {