@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.mjs CHANGED
@@ -14,7 +14,7 @@ var conditions = {
14
14
  extend: {
15
15
  disabled: "&:is(:disabled, [disabled], [aria-disabled=true], [data-disabled])",
16
16
  invalid: "&:is([aria-invalid=true], [data-invalid])",
17
- active: "&:is(:active, [data-active], [data-active=true])",
17
+ active: "&:is(:active, [data-active=true])",
18
18
  checked: "&:is(:checked, [data-checked], [aria-checked=true], [data-state=checked])",
19
19
  indeterminate: "&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state=indeterminate])",
20
20
  closed: "&:is([data-state=closed])",
@@ -79,6 +79,11 @@ var keyframes = defineKeyframes({
79
79
  },
80
80
  spin: {
81
81
  "100%": { transform: "rotate(1turn)" }
82
+ },
83
+ "border-shine": {
84
+ "0%": { backgroundPosition: "0% 20%" },
85
+ "50%": { backgroundPosition: "100% 50%" },
86
+ "100%": { backgroundPosition: "0% 100%" }
82
87
  }
83
88
  });
84
89
 
@@ -118,7 +123,7 @@ var tagSlotRecipe = defineSlotRecipe({
118
123
  right: "0",
119
124
  paddingTop: "1",
120
125
  padding: "0",
121
- transition: "all 250ms!",
126
+ transition: "opacity 250ms!",
122
127
  visibility: "hidden",
123
128
  opacity: "0",
124
129
  _groupHover: {
@@ -181,9 +186,9 @@ var tagSlotRecipe = defineSlotRecipe({
181
186
  borderBottomLeftRadius: "0",
182
187
  color: "gray.600",
183
188
  _nextTheme: {
184
- background: "background.danger",
189
+ background: "background.neutral.subtle",
185
190
  boxShadow: "-7px 0px 15px -3px #0000001A",
186
- color: "icon.danger"
191
+ color: "icon.default"
187
192
  }
188
193
  }
189
194
  }
@@ -347,20 +352,20 @@ var avatarSlotRecipe = defineSlotRecipe2({
347
352
  variantColor,
348
353
  size: {
349
354
  sm: {
350
- root: { width: "6", height: "6", fontSize: "xs" },
351
- icon: { width: "4!", height: "4!" }
355
+ root: { width: "5", height: "5", fontSize: "sm" },
356
+ icon: { width: "3!", height: "3!" }
352
357
  },
353
358
  md: {
354
- root: { width: "8", height: "8", fontSize: "sm" },
355
- icon: { width: "5!", height: "5!" }
359
+ root: { width: "6", height: "6", fontSize: "md" },
360
+ icon: { width: "4!", height: "4!" }
356
361
  },
357
362
  lg: {
358
- root: { width: "12", height: "12", fontSize: "lg" },
359
- icon: { width: "8!", height: "8!" }
363
+ root: { width: "9", height: "9", fontSize: "sm" },
364
+ icon: { width: "5!", height: "5!" }
360
365
  },
361
366
  xl: {
362
- root: { width: "20", height: "20", fontSize: "2xl" },
363
- icon: { width: "16!", height: "16!" }
367
+ root: { width: "20", height: "20", fontSize: "32px" },
368
+ icon: { width: "12!", height: "12!" }
364
369
  }
365
370
  }
366
371
  },
@@ -417,7 +422,7 @@ var avatarGroupSlotRecipe = defineSlotRecipe2({
417
422
  zIndex: "0"
418
423
  },
419
424
  excess: {
420
- marginLeft: "2",
425
+ marginLeft: "1",
421
426
  color: "blue.400",
422
427
  backgroundColor: "blue.50",
423
428
  fontWeight: "semiBold",
@@ -436,19 +441,166 @@ var avatarGroupSlotRecipe = defineSlotRecipe2({
436
441
  variants: {
437
442
  size: {
438
443
  sm: {
439
- excess: { width: "6", height: "6", fontSize: "xs" }
444
+ root: {
445
+ "& > [data-pixel-component=MpAvatar]": {
446
+ width: "6.5",
447
+ height: "6.5",
448
+ fontSize: "sm"
449
+ }
450
+ },
451
+ excess: { width: "5", height: "5", fontSize: "sm" }
440
452
  },
441
453
  md: {
442
- excess: { width: "8", height: "8", fontSize: "sm" }
454
+ root: {
455
+ "& > [data-pixel-component=MpAvatar]": {
456
+ width: "7",
457
+ height: "7",
458
+ fontSize: "md"
459
+ }
460
+ },
461
+ excess: { width: "6", height: "6", fontSize: "md" }
443
462
  },
444
463
  lg: {
445
- excess: { width: "12", height: "12", fontSize: "lg" }
464
+ root: {
465
+ "& > [data-pixel-component=MpAvatar]": {
466
+ width: "9.5",
467
+ height: "9.5",
468
+ fontSize: "sm"
469
+ }
470
+ },
471
+ excess: { width: "9", height: "9", fontSize: "sm" }
446
472
  },
447
473
  xl: {
448
- excess: { width: "20", height: "20", fontSize: "2xl" }
474
+ root: {
475
+ "& > [data-pixel-component=MpAvatar]": {
476
+ width: "82px",
477
+ height: "82px",
478
+ fontSize: "32px"
479
+ }
480
+ },
481
+ excess: { width: "20", height: "20", fontSize: "32px" }
482
+ }
483
+ }
484
+ },
485
+ compoundVariants: [],
486
+ defaultVariants: {}
487
+ });
488
+
489
+ // src/recipes/airene-button.ts
490
+ import { defineSlotRecipe as defineSlotRecipe3 } from "@pandacss/dev";
491
+ var aireneButtonSlotRecipe = defineSlotRecipe3({
492
+ className: "airene-button",
493
+ jsx: ["MpAireneButton", "mp-airene-button"],
494
+ slots: ["root", "badge"],
495
+ base: {
496
+ root: {
497
+ display: "inline-flex!",
498
+ justifyContent: "center",
499
+ alignItems: "center",
500
+ position: "relative",
501
+ backgroundColor: "white",
502
+ color: "blue.400!",
503
+ borderRadius: "25px!",
504
+ fontSize: "md",
505
+ fontWeight: "semiBold",
506
+ paddingLeft: "0.625rem!",
507
+ paddingRight: "0.625rem!",
508
+ overflow: "hidden",
509
+ paddingTop: "7.5px!",
510
+ paddingBottom: "7.5px!",
511
+ height: "auto",
512
+ zIndex: "1",
513
+ gap: "0!",
514
+ transition: "color 0.3s ease, background-color 0.3s ease",
515
+ _nextTheme: {
516
+ backgroundColor: "background.neutral",
517
+ color: "text.link!"
518
+ },
519
+ _before: {
520
+ content: "''",
521
+ position: "absolute",
522
+ top: "-2px",
523
+ left: "-2px",
524
+ right: "-2px",
525
+ bottom: "-2px",
526
+ borderRadius: "23px",
527
+ background: "vibrantPurple",
528
+ backgroundSize: "200% 200%",
529
+ animation: "border-shine 4s linear infinite",
530
+ transition: "background-color 0.3s ease",
531
+ zIndex: "-1"
532
+ },
533
+ _after: {
534
+ content: "''",
535
+ position: "absolute",
536
+ top: "2px",
537
+ left: "2px",
538
+ right: "2px",
539
+ bottom: "2px",
540
+ borderRadius: "999px",
541
+ backgroundColor: "white",
542
+ zIndex: "-1",
543
+ _nextTheme: {
544
+ backgroundColor: "background.neutral"
545
+ }
546
+ },
547
+ _hover: {
548
+ _before: {
549
+ background: "linear-gradient(90deg, var(--mp-colors-blue-400), var(--mp-colors-blue-400), var(--mp-colors-blue-400))",
550
+ _nextTheme: {
551
+ background: "linear-gradient(90deg, var(--mp-colors-background-brand-bold), var(--mp-colors-background-brand-bold), var(--mp-colors-background-brand-bold))"
552
+ }
553
+ }
554
+ },
555
+ _active: {
556
+ _before: {
557
+ background: "linear-gradient(90deg, var(--mp-colors-blue-400), var(--mp-colors-blue-400), var(--mp-colors-blue-400))"
558
+ },
559
+ _after: {
560
+ background: "blue.50"
561
+ }
562
+ },
563
+ _disabled: {
564
+ color: "gray.400!",
565
+ cursor: "not-allowed",
566
+ _nextTheme: {
567
+ color: "text.placeholder!"
568
+ },
569
+ _before: {
570
+ background: "gray.50!"
571
+ },
572
+ _after: {
573
+ background: "gray.50!",
574
+ _nextTheme: {
575
+ bacground: "#F0F1F3!"
576
+ }
577
+ }
578
+ }
579
+ },
580
+ badge: {
581
+ display: "flex",
582
+ backgroundColor: "var(--mp-airene-button-badge-background)",
583
+ borderRadius: "999px",
584
+ paddingRight: "1",
585
+ paddingLeft: "0.5",
586
+ paddingY: "0.5",
587
+ height: "4",
588
+ marginLeft: "1",
589
+ "& > [data-pixel-component=MpIcon]": {
590
+ width: "3!",
591
+ height: "3!",
592
+ "& > path": {
593
+ fill: "var(--mp-airene-button-badge-icon)"
594
+ }
595
+ },
596
+ "& > [data-pixel-component=MpText]": {
597
+ fontSize: "0.625rem!",
598
+ fontWeight: "semiBold!",
599
+ color: "var(--mp-airene-button-badge-text)"
449
600
  }
450
601
  }
451
602
  },
603
+ variants: {},
452
604
  compoundVariants: [],
453
605
  defaultVariants: {}
454
606
  });
@@ -595,7 +747,7 @@ var buttonRecipe = defineRecipe({
595
747
  background: "red.700",
596
748
  borderColor: "red.700"
597
749
  },
598
- _focus: {
750
+ _focusVisible: {
599
751
  borderColor: "red.400",
600
752
  boxShadow: "0 0 0 3px #FDECEE"
601
753
  },
@@ -614,7 +766,7 @@ var buttonRecipe = defineRecipe({
614
766
  background: "background.danger.bold.pressed",
615
767
  borderColor: "background.danger.bold.pressed"
616
768
  },
617
- _focus: {
769
+ _focusVisible: {
618
770
  borderColor: "border.focused",
619
771
  boxShadow: "focus"
620
772
  },
@@ -623,6 +775,38 @@ var buttonRecipe = defineRecipe({
623
775
  }
624
776
  }
625
777
  },
778
+ tertiary: {
779
+ color: "white",
780
+ background: "#282E33",
781
+ borderColor: "#282E33",
782
+ _hover: {
783
+ background: "#38414A",
784
+ borderColor: "#38414A"
785
+ },
786
+ _active: {
787
+ background: "#454F59",
788
+ borderColor: "#454F59"
789
+ },
790
+ _loading: {
791
+ background: "#282E33"
792
+ },
793
+ _nextTheme: {
794
+ color: "text.inverse.static",
795
+ background: "background.tertiary",
796
+ borderColor: "background.tertiary",
797
+ _hover: {
798
+ background: "background.tertiary.hovered",
799
+ borderColor: "background.tertiary.hovered"
800
+ },
801
+ _active: {
802
+ background: "background.tertiary.pressed",
803
+ borderColor: "background.tertiary.pressed"
804
+ },
805
+ _loading: {
806
+ background: "background.tertiary"
807
+ }
808
+ }
809
+ },
626
810
  textLink: {
627
811
  color: "blue.400",
628
812
  background: "transparent",
@@ -659,13 +843,28 @@ var buttonRecipe = defineRecipe({
659
843
  _disabled: {
660
844
  color: "text.disabled",
661
845
  _hover: {
662
- color: "text.disabled"
846
+ color: "text.disabled",
847
+ textDecoration: "none"
663
848
  }
664
849
  },
665
850
  _loading: {
666
851
  background: "text.inverse"
667
852
  }
668
853
  }
854
+ },
855
+ unstyled: {
856
+ display: "inline",
857
+ color: "inherit",
858
+ backgroundColor: "transparent",
859
+ border: "none",
860
+ outline: "none",
861
+ margin: "0",
862
+ padding: "0",
863
+ fontSize: "inherit",
864
+ fontWeight: "inherit",
865
+ lineHeight: "inherit",
866
+ userSelect: "inherit",
867
+ textAlign: "inherit"
669
868
  }
670
869
  },
671
870
  size: {
@@ -678,18 +877,38 @@ var buttonRecipe = defineRecipe({
678
877
  },
679
878
  _hasIcon: {
680
879
  paddingX: "1",
681
- paddingY: "1 !important",
880
+ paddingY: "1",
682
881
  _nextTheme: {
683
- paddingX: "3xs !",
684
- paddingY: "3xs !important"
882
+ paddingX: "3xs",
883
+ paddingY: "3xs"
685
884
  }
686
885
  },
687
886
  _hasLabel: {
688
- paddingX: "2 !important",
887
+ paddingX: "2",
689
888
  paddingY: "1",
889
+ _hasIcon: {
890
+ "[data-icon-position=left]": {
891
+ paddingLeft: "1.5",
892
+ paddingRight: "2"
893
+ },
894
+ "[data-icon-position=right]": {
895
+ paddingLeft: "2",
896
+ paddingRight: "1.5"
897
+ }
898
+ },
690
899
  _nextTheme: {
691
- paddingX: "xs !important",
692
- paddingY: "3xs"
900
+ paddingX: "xs",
901
+ paddingY: "3xs",
902
+ _hasIcon: {
903
+ "[data-icon-position=left]": {
904
+ paddingLeft: "2xs",
905
+ paddingRight: "xs"
906
+ },
907
+ "[data-icon-position=right]": {
908
+ paddingLeft: "xs",
909
+ paddingRight: "2xs"
910
+ }
911
+ }
693
912
  }
694
913
  }
695
914
  },
@@ -702,18 +921,38 @@ var buttonRecipe = defineRecipe({
702
921
  },
703
922
  _hasIcon: {
704
923
  paddingX: "1.5",
705
- paddingY: "1.5 !important",
924
+ paddingY: "1.5",
706
925
  _nextTheme: {
707
- paddingX: "2xs",
708
- paddingY: "2xs !important"
926
+ paddingX: "xs",
927
+ paddingY: "xs"
709
928
  }
710
929
  },
711
930
  _hasLabel: {
712
- paddingX: "4 !important",
931
+ paddingX: "4",
713
932
  paddingY: "2",
933
+ _hasIcon: {
934
+ "&[data-icon-position=left]": {
935
+ paddingLeft: "3 !important",
936
+ paddingRight: "4 !important"
937
+ },
938
+ "& [data-icon-position=right]": {
939
+ paddingLeft: "4 !important",
940
+ paddingRight: "3 !important"
941
+ }
942
+ },
714
943
  _nextTheme: {
715
- paddingX: "md !important",
716
- paddingY: "xs"
944
+ paddingX: "md",
945
+ paddingY: "xs",
946
+ _hasIcon: {
947
+ "[data-icon-position=left]": {
948
+ paddingLeft: "sm !important",
949
+ paddingRight: "md !important"
950
+ },
951
+ "[data-icon-position=right]": {
952
+ paddingLeft: "md !important",
953
+ paddingRight: "sm !important"
954
+ }
955
+ }
717
956
  }
718
957
  }
719
958
  }
@@ -724,7 +963,7 @@ var buttonRecipe = defineRecipe({
724
963
  variant: ["textLink"],
725
964
  css: {
726
965
  borderRadius: "sm",
727
- _focus: {
966
+ _focusVisible: {
728
967
  borderColor: "white",
729
968
  boxShadow: "focus",
730
969
  _nextTheme: {
@@ -741,9 +980,9 @@ var buttonRecipe = defineRecipe({
741
980
  }
742
981
  },
743
982
  {
744
- variant: ["primary", "secondary", "ghost"],
983
+ variant: ["primary", "secondary", "ghost", "tertiary"],
745
984
  css: {
746
- _focus: {
985
+ _focusVisible: {
747
986
  borderColor: "blue.400",
748
987
  boxShadow: "focus",
749
988
  _nextTheme: {
@@ -754,7 +993,7 @@ var buttonRecipe = defineRecipe({
754
993
  }
755
994
  },
756
995
  {
757
- variant: ["primary", "secondary", "ghost", "danger"],
996
+ variant: ["primary", "secondary", "ghost", "danger", "tertiary"],
758
997
  css: {
759
998
  _disabled: {
760
999
  cursor: "not-allowed",
@@ -763,7 +1002,15 @@ var buttonRecipe = defineRecipe({
763
1002
  borderColor: "gray.50",
764
1003
  _hover: {
765
1004
  background: "gray.50",
766
- borderColor: "gray.50"
1005
+ borderColor: "gray.50",
1006
+ _hasIcon: {
1007
+ background: "transparent",
1008
+ borderColor: "transparent"
1009
+ }
1010
+ },
1011
+ _hasIcon: {
1012
+ background: "transparent",
1013
+ borderColor: "transparent"
767
1014
  },
768
1015
  _nextTheme: {
769
1016
  color: "text.disabled",
@@ -771,7 +1018,15 @@ var buttonRecipe = defineRecipe({
771
1018
  borderColor: "background.disabled",
772
1019
  _hover: {
773
1020
  background: "background.disabled",
774
- borderColor: "background.disabled"
1021
+ borderColor: "background.disabled",
1022
+ _hasIcon: {
1023
+ background: "transparent",
1024
+ borderColor: "transparent"
1025
+ }
1026
+ },
1027
+ _hasIcon: {
1028
+ background: "transparent",
1029
+ borderColor: "transparent"
775
1030
  }
776
1031
  }
777
1032
  }
@@ -810,8 +1065,8 @@ var buttonGroupRecipe = defineRecipe({
810
1065
  });
811
1066
 
812
1067
  // src/recipes/input.ts
813
- import { defineSlotRecipe as defineSlotRecipe3 } from "@pandacss/dev";
814
- var inputSlotRecipe = defineSlotRecipe3({
1068
+ import { defineSlotRecipe as defineSlotRecipe4 } from "@pandacss/dev";
1069
+ var inputSlotRecipe = defineSlotRecipe4({
815
1070
  className: "input",
816
1071
  jsx: ["MpInput", "mp-input"],
817
1072
  slots: ["root", "control", "clear"],
@@ -847,7 +1102,7 @@ var inputSlotRecipe = defineSlotRecipe3({
847
1102
  paddingInline: "3",
848
1103
  appearance: "none",
849
1104
  caretColor: "blue.500",
850
- transition: "all 250ms",
1105
+ transition: "border-color 250ms, background-color 250ms",
851
1106
  _isFullWidth: {
852
1107
  width: "full"
853
1108
  },
@@ -992,7 +1247,7 @@ var inputSlotRecipe = defineSlotRecipe3({
992
1247
  // TODO: Check why this recipe need to generate statically
993
1248
  staticCss: ["*"]
994
1249
  });
995
- var inputGroupSlotRecipe = defineSlotRecipe3({
1250
+ var inputGroupSlotRecipe = defineSlotRecipe4({
996
1251
  className: "input-group",
997
1252
  jsx: ["MpInputGroup", "mp-input-group"],
998
1253
  slots: ["root"],
@@ -1004,7 +1259,7 @@ var inputGroupSlotRecipe = defineSlotRecipe3({
1004
1259
  width: "full",
1005
1260
  "&[data-with-left-addon=true]": {
1006
1261
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
1007
- paddingLeft: "calc(var(--mp-input-offset--left) + 24px)"
1262
+ paddingLeft: "calc(var(--mp-input-offset--left) + 14px)"
1008
1263
  }
1009
1264
  },
1010
1265
  "&[data-with-clearable=true]": {
@@ -1022,14 +1277,14 @@ var inputGroupSlotRecipe = defineSlotRecipe3({
1022
1277
  },
1023
1278
  "&[data-with-right-addon=true]": {
1024
1279
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
1025
- paddingRight: "calc(var(--mp-input-offset--right) + 24px)"
1280
+ paddingRight: "calc(var(--mp-input-offset--right) + 14px)"
1026
1281
  },
1027
1282
  "&[data-with-clearable=true]": {
1028
1283
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputControl]": {
1029
1284
  paddingRight: "calc(var(--mp-input-offset--right) + 54px)"
1030
1285
  },
1031
1286
  "& > [data-pixel-component=MpInput] > [data-pixel-component=MpInputClear]": {
1032
- "--mp-input--right": "calc(var(--mp-input-offset--right) + 24px)"
1287
+ "--mp-input--right": "calc(var(--mp-input-offset--right) + 14px)"
1033
1288
  }
1034
1289
  }
1035
1290
  },
@@ -1063,7 +1318,7 @@ var inputGroupSlotRecipe = defineSlotRecipe3({
1063
1318
  compoundVariants: [],
1064
1319
  defaultVariants: {}
1065
1320
  });
1066
- var inputAddonSlotRecipe = defineSlotRecipe3({
1321
+ var inputAddonSlotRecipe = defineSlotRecipe4({
1067
1322
  className: "input-addon",
1068
1323
  jsx: ["MpInputAddon", "mp-input-addon"],
1069
1324
  slots: ["root"],
@@ -1090,16 +1345,20 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
1090
1345
  placement: {
1091
1346
  left: {
1092
1347
  root: {
1093
- left: "3",
1348
+ left: "2",
1094
1349
  borderTopRightRadius: "none!",
1095
- borderBottomRightRadius: "none!"
1350
+ borderBottomRightRadius: "none!",
1351
+ minWidth: "32px",
1352
+ justifyContent: "center"
1096
1353
  }
1097
1354
  },
1098
1355
  right: {
1099
1356
  root: {
1100
- right: "3",
1357
+ right: "2",
1101
1358
  borderTopLeftRadius: "none!",
1102
- borderBottomLeftRadius: "none!"
1359
+ borderBottomLeftRadius: "none!",
1360
+ minWidth: "32px",
1361
+ justifyContent: "center"
1103
1362
  }
1104
1363
  }
1105
1364
  },
@@ -1109,8 +1368,16 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
1109
1368
  height: "6.5",
1110
1369
  borderRadius: "2xs",
1111
1370
  _hasBackground: {
1112
- _placementLeft: { left: "0.5" },
1113
- _placementRight: { right: "0.5" }
1371
+ _placementLeft: {
1372
+ left: "0.5",
1373
+ minWidth: "24px",
1374
+ justifyContent: "center"
1375
+ },
1376
+ _placementRight: {
1377
+ right: "0.5",
1378
+ minWidth: "24px",
1379
+ justifyContent: "center"
1380
+ }
1114
1381
  }
1115
1382
  }
1116
1383
  },
@@ -1119,8 +1386,16 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
1119
1386
  height: "32px",
1120
1387
  borderRadius: "sm",
1121
1388
  _hasBackground: {
1122
- _placementLeft: { left: "3px" },
1123
- _placementRight: { right: "3px" }
1389
+ _placementLeft: {
1390
+ left: "3px",
1391
+ minWidth: "32px",
1392
+ justifyContent: "center"
1393
+ },
1394
+ _placementRight: {
1395
+ right: "3px",
1396
+ minWidth: "32px",
1397
+ justifyContent: "center"
1398
+ }
1124
1399
  }
1125
1400
  }
1126
1401
  }
@@ -1136,8 +1411,8 @@ var inputAddonSlotRecipe = defineSlotRecipe3({
1136
1411
  });
1137
1412
 
1138
1413
  // src/recipes/select.ts
1139
- import { defineSlotRecipe as defineSlotRecipe4 } from "@pandacss/dev";
1140
- var selectSlotRecipe = defineSlotRecipe4({
1414
+ import { defineSlotRecipe as defineSlotRecipe5 } from "@pandacss/dev";
1415
+ var selectSlotRecipe = defineSlotRecipe5({
1141
1416
  className: "select",
1142
1417
  jsx: ["MpSelect", "mp-select"],
1143
1418
  slots: ["root", "control", "clear", "arrow"],
@@ -1297,7 +1572,6 @@ var textRecipe = defineRecipe2({
1297
1572
  jsx: ["MpText", "mp-text"],
1298
1573
  base: {
1299
1574
  color: "var(--mp-text-color)",
1300
- fontVariantNumeric: "lining-nums tabular-nums",
1301
1575
  "&[data-text-strike=true]": {
1302
1576
  textDecoration: "line-through"
1303
1577
  },
@@ -1361,7 +1635,9 @@ var iconRecipe = defineRecipe3({
1361
1635
  flexShrink: 0,
1362
1636
  "&:not(:root)": {
1363
1637
  overflow: "hidden"
1364
- }
1638
+ },
1639
+ width: "var(--mp-icon-size)",
1640
+ height: "var(--mp-icon-size)"
1365
1641
  },
1366
1642
  variants: {
1367
1643
  size: {
@@ -1409,10 +1685,10 @@ var spinnerRecipe = defineRecipe4({
1409
1685
  });
1410
1686
 
1411
1687
  // src/recipes/accordion.ts
1412
- import { defineSlotRecipe as defineSlotRecipe5 } from "@pandacss/dev";
1413
- var accordionSlotRecipe = defineSlotRecipe5({
1688
+ import { defineSlotRecipe as defineSlotRecipe6 } from "@pandacss/dev";
1689
+ var accordionSlotRecipe = defineSlotRecipe6({
1414
1690
  className: "accordion",
1415
- slots: ["header", "item", "panel"],
1691
+ slots: ["header", "headerTitle", "headerDescription", "item", "panel"],
1416
1692
  jsx: [
1417
1693
  "MpAccordionHeader",
1418
1694
  "MpAccordionItem",
@@ -1423,35 +1699,52 @@ var accordionSlotRecipe = defineSlotRecipe5({
1423
1699
  ],
1424
1700
  base: {
1425
1701
  header: {
1702
+ display: "flex",
1703
+ flexDirection: "column",
1704
+ alignItems: "flex-start",
1705
+ pt: 3,
1706
+ _disabled: { opacity: "0.4", cursor: "not-allowed" }
1707
+ },
1708
+ headerTitle: {
1426
1709
  display: "flex",
1427
1710
  alignItems: "center",
1711
+ gap: 2,
1428
1712
  width: "100%",
1429
1713
  outline: 0,
1430
- gap: 4,
1431
- transition: "all 0.2s",
1432
- py: 3,
1433
1714
  fontWeight: "semiBold",
1434
- fontSize: "md",
1715
+ fontSize: "xl",
1435
1716
  color: "dark",
1436
- _disabled: { opacity: "0.4", cursor: "not-allowed" },
1717
+ transition: "all 0.2s",
1437
1718
  _nextTheme: {
1438
1719
  color: "text.default"
1439
1720
  }
1440
1721
  },
1722
+ headerDescription: {
1723
+ color: "gray.600",
1724
+ lineHeight: "md",
1725
+ _nextTheme: {
1726
+ color: "text.secondary"
1727
+ }
1728
+ },
1441
1729
  item: {
1442
1730
  borderBottomWidth: "1px",
1443
1731
  borderColor: "gray.100",
1732
+ pb: 3,
1444
1733
  _last: {
1445
1734
  borderBottomWidth: "1px",
1446
1735
  borderColor: "gray.100",
1447
- _nextTheme: { borderColor: "border.default" }
1736
+ _nextTheme: { borderColor: "transparent" }
1448
1737
  },
1449
1738
  _nextTheme: {
1450
1739
  borderColor: "border.default"
1451
1740
  }
1452
1741
  },
1453
1742
  panel: {
1454
- py: 3
1743
+ pt: 2,
1744
+ color: "gray.600",
1745
+ _nextTheme: {
1746
+ color: "text.secondary"
1747
+ }
1455
1748
  }
1456
1749
  },
1457
1750
  variants: {
@@ -1466,11 +1759,34 @@ var accordionSlotRecipe = defineSlotRecipe5({
1466
1759
  cursor: "default"
1467
1760
  }
1468
1761
  }
1762
+ },
1763
+ iconPosition: {
1764
+ start: {
1765
+ headerDescription: {
1766
+ pl: 8
1767
+ },
1768
+ panel: {
1769
+ pl: 8
1770
+ }
1771
+ },
1772
+ end: {
1773
+ headerDescription: {
1774
+ pl: 0
1775
+ },
1776
+ panel: {
1777
+ pl: 0
1778
+ }
1779
+ }
1469
1780
  }
1470
1781
  },
1471
1782
  defaultVariants: {
1472
- isClickable: true
1473
- }
1783
+ isClickable: true,
1784
+ iconPosition: "end"
1785
+ },
1786
+ staticCss: [
1787
+ // Need to generate statically as `start` and `end` values are runtime-determined.
1788
+ { iconPosition: ["*"] }
1789
+ ]
1474
1790
  });
1475
1791
 
1476
1792
  // src/recipes/popover.ts
@@ -1878,6 +2194,7 @@ var tooltipRecipe = defineRecipe8({
1878
2194
  fontWeight: "regular",
1879
2195
  pointerEvents: "none",
1880
2196
  fontSize: "sm",
2197
+ lineHeight: "20px",
1881
2198
  shadow: "md",
1882
2199
  maxW: "300px",
1883
2200
  zIndex: "tooltip",
@@ -1894,8 +2211,8 @@ var tooltipRecipe = defineRecipe8({
1894
2211
  });
1895
2212
 
1896
2213
  // src/recipes/tabs.ts
1897
- import { defineRecipe as defineRecipe9, defineSlotRecipe as defineSlotRecipe6 } from "@pandacss/dev";
1898
- var tabListSlotRecipe = defineSlotRecipe6({
2214
+ import { defineRecipe as defineRecipe9, defineSlotRecipe as defineSlotRecipe7 } from "@pandacss/dev";
2215
+ var tabListSlotRecipe = defineSlotRecipe7({
1899
2216
  className: "tab-list",
1900
2217
  jsx: ["MpTabList", "mp-tab-list"],
1901
2218
  slots: ["root", "list"],
@@ -1956,7 +2273,7 @@ var tabRecipe = defineRecipe9({
1956
2273
  opacity: 0.4,
1957
2274
  cursor: "not-allowed"
1958
2275
  },
1959
- _focus: {
2276
+ _focusVisible: {
1960
2277
  shadow: "0 0 0 2px #E0EEFF",
1961
2278
  borderRadius: "sm"
1962
2279
  },
@@ -1965,7 +2282,7 @@ var tabRecipe = defineRecipe9({
1965
2282
  _hover: {
1966
2283
  color: "text.default"
1967
2284
  },
1968
- _focus: {
2285
+ _focusVisible: {
1969
2286
  shadow: "0 0 0 2px var(--mp-colors-border-focused)"
1970
2287
  }
1971
2288
  }
@@ -2142,8 +2459,8 @@ var tabSelectedBorderRecipe = defineRecipe9({
2142
2459
  });
2143
2460
 
2144
2461
  // src/recipes/checkbox.ts
2145
- import { defineSlotRecipe as defineSlotRecipe7 } from "@pandacss/dev";
2146
- var checkboxSlotRecipe = defineSlotRecipe7({
2462
+ import { defineSlotRecipe as defineSlotRecipe8 } from "@pandacss/dev";
2463
+ var checkboxSlotRecipe = defineSlotRecipe8({
2147
2464
  className: "checkbox",
2148
2465
  jsx: ["MpCheckbox", "mp-checkbox"],
2149
2466
  slots: ["root", "control", "label"],
@@ -2164,12 +2481,14 @@ var checkboxSlotRecipe = defineSlotRecipe7({
2164
2481
  }
2165
2482
  },
2166
2483
  "& .mp-shared__hidden": {
2167
- "&:focus + .mp-checkbox__control": {
2168
- borderColor: "blue.400",
2169
- boxShadow: "focus",
2170
- _nextTheme: {
2171
- borderColor: "border.focused",
2172
- boxShadow: "0 0 0 1px {colors.border.focused}"
2484
+ _focusVisible: {
2485
+ "& + .mp-checkbox__control": {
2486
+ borderColor: "blue.400",
2487
+ boxShadow: "focus",
2488
+ _nextTheme: {
2489
+ borderColor: "border.focused",
2490
+ boxShadow: "0 0 0 1px {colors.border.focused}"
2491
+ }
2173
2492
  }
2174
2493
  }
2175
2494
  },
@@ -2288,8 +2607,8 @@ var checkboxSlotRecipe = defineSlotRecipe7({
2288
2607
  });
2289
2608
 
2290
2609
  // src/recipes/radio.ts
2291
- import { defineSlotRecipe as defineSlotRecipe8 } from "@pandacss/dev";
2292
- var radioSlotRecipe = defineSlotRecipe8({
2610
+ import { defineSlotRecipe as defineSlotRecipe9 } from "@pandacss/dev";
2611
+ var radioSlotRecipe = defineSlotRecipe9({
2293
2612
  className: "radio",
2294
2613
  jsx: ["MpRadio", "mp-radio"],
2295
2614
  slots: ["root", "control", "label"],
@@ -2310,12 +2629,14 @@ var radioSlotRecipe = defineSlotRecipe8({
2310
2629
  }
2311
2630
  },
2312
2631
  "& .mp-shared__hidden": {
2313
- "&:focus + .mp-radio__control": {
2314
- borderColor: "blue.400",
2315
- boxShadow: "focus",
2316
- _nextTheme: {
2317
- borderColor: "border.focused",
2318
- boxShadow: "0 0 0 1px {colors.border.focused}"
2632
+ _focusVisible: {
2633
+ "& + .mp-radio__control": {
2634
+ borderColor: "blue.400",
2635
+ boxShadow: "focus",
2636
+ _nextTheme: {
2637
+ borderColor: "border.focused",
2638
+ boxShadow: "0 0 0 1px {colors.border.focused}"
2639
+ }
2319
2640
  }
2320
2641
  }
2321
2642
  },
@@ -2419,8 +2740,8 @@ var radioSlotRecipe = defineSlotRecipe8({
2419
2740
  });
2420
2741
 
2421
2742
  // src/recipes/shared.ts
2422
- import { defineSlotRecipe as defineSlotRecipe9 } from "@pandacss/dev";
2423
- var sharedSlotRecipe = defineSlotRecipe9({
2743
+ import { defineSlotRecipe as defineSlotRecipe10 } from "@pandacss/dev";
2744
+ var sharedSlotRecipe = defineSlotRecipe10({
2424
2745
  className: "shared",
2425
2746
  jsx: ["MpCheckbox", "mp-checkbox", "MpRadio", "mp-radio"],
2426
2747
  slots: ["hidden"],
@@ -2437,8 +2758,8 @@ var sharedSlotRecipe = defineSlotRecipe9({
2437
2758
  });
2438
2759
 
2439
2760
  // src/recipes/toggle.ts
2440
- import { defineSlotRecipe as defineSlotRecipe10 } from "@pandacss/dev";
2441
- var toggleSlotRecipe = defineSlotRecipe10({
2761
+ import { defineSlotRecipe as defineSlotRecipe11 } from "@pandacss/dev";
2762
+ var toggleSlotRecipe = defineSlotRecipe11({
2442
2763
  className: "toggle",
2443
2764
  jsx: ["MpToggle", "mp-toggle"],
2444
2765
  slots: ["root", "control", "label"],
@@ -2459,12 +2780,14 @@ var toggleSlotRecipe = defineSlotRecipe10({
2459
2780
  }
2460
2781
  },
2461
2782
  "& .mp-shared__hidden": {
2462
- "&:focus + .mp-toggle__control": {
2463
- borderColor: "blue.400",
2464
- boxShadow: "focus",
2465
- _nextTheme: {
2466
- borderColor: "border.focused",
2467
- boxShadow: "0 0 0 1px {colors.border.focused}"
2783
+ _focusVisible: {
2784
+ "& + .mp-toggle__control": {
2785
+ borderColor: "blue.400",
2786
+ boxShadow: "focus",
2787
+ _nextTheme: {
2788
+ borderColor: "border.focused",
2789
+ boxShadow: "0 0 0 1px {colors.border.focused}"
2790
+ }
2468
2791
  }
2469
2792
  }
2470
2793
  },
@@ -2706,8 +3029,8 @@ var tableContainerRecipe = defineRecipe10({
2706
3029
  });
2707
3030
 
2708
3031
  // src/recipes/progress.ts
2709
- import { defineSlotRecipe as defineSlotRecipe11 } from "@pandacss/dev";
2710
- var progressSlotRecipe = defineSlotRecipe11({
3032
+ import { defineSlotRecipe as defineSlotRecipe12 } from "@pandacss/dev";
3033
+ var progressSlotRecipe = defineSlotRecipe12({
2711
3034
  className: "progress",
2712
3035
  jsx: ["MpProgress", "mp-progress"],
2713
3036
  slots: ["root", "linear", "circularBase", "circularTrack"],
@@ -2786,8 +3109,8 @@ var progressSlotRecipe = defineSlotRecipe11({
2786
3109
  });
2787
3110
 
2788
3111
  // src/recipes/form-control.ts
2789
- import { defineSlotRecipe as defineSlotRecipe12 } from "@pandacss/dev";
2790
- var formControlSlotRecipe = defineSlotRecipe12({
3112
+ import { defineSlotRecipe as defineSlotRecipe13 } from "@pandacss/dev";
3113
+ var formControlSlotRecipe = defineSlotRecipe13({
2791
3114
  className: "form-control",
2792
3115
  jsx: ["MpFormControl", "mp-form-control"],
2793
3116
  slots: ["root", "label", "required", "helpText", "errorMessage"],
@@ -2834,8 +3157,8 @@ var formControlSlotRecipe = defineSlotRecipe12({
2834
3157
  });
2835
3158
 
2836
3159
  // src/recipes/input-tag.ts
2837
- import { defineSlotRecipe as defineSlotRecipe13 } from "@pandacss/dev";
2838
- var inputTagSlotRecipe = defineSlotRecipe13({
3160
+ import { defineSlotRecipe as defineSlotRecipe14 } from "@pandacss/dev";
3161
+ var inputTagSlotRecipe = defineSlotRecipe14({
2839
3162
  className: "input-tag",
2840
3163
  jsx: ["MpInputTag", "mp-input-tag"],
2841
3164
  slots: [
@@ -3033,8 +3356,8 @@ var dividerRecipe = defineRecipe11({
3033
3356
  });
3034
3357
 
3035
3358
  // src/recipes/modal.ts
3036
- import { defineSlotRecipe as defineSlotRecipe14 } from "@pandacss/dev";
3037
- var modalSlotRecipe = defineSlotRecipe14({
3359
+ import { defineSlotRecipe as defineSlotRecipe15 } from "@pandacss/dev";
3360
+ var modalSlotRecipe = defineSlotRecipe15({
3038
3361
  className: "modal",
3039
3362
  description: "The styles for the Modal component",
3040
3363
  jsx: ["MpModal", "mp-modal"],
@@ -3087,7 +3410,10 @@ var modalSlotRecipe = defineSlotRecipe14({
3087
3410
  _nextTheme: {
3088
3411
  background: "background.stage",
3089
3412
  borderColor: "border.bold",
3090
- color: "text.default"
3413
+ color: "text.default",
3414
+ '&[data-modal-type="drawer"]': {
3415
+ borderColor: "border.default"
3416
+ }
3091
3417
  }
3092
3418
  },
3093
3419
  header: {
@@ -3105,6 +3431,10 @@ var modalSlotRecipe = defineSlotRecipe14({
3105
3431
  color: "text.default",
3106
3432
  background: "background.neutral.subtle",
3107
3433
  borderBottomColor: "border.default"
3434
+ },
3435
+ '&[data-modal-presentation="drawer"]': {
3436
+ borderTopLeftRadius: "none",
3437
+ borderTopRightRadius: "none"
3108
3438
  }
3109
3439
  },
3110
3440
  closeButton: {
@@ -3161,8 +3491,8 @@ var modalSlotRecipe = defineSlotRecipe14({
3161
3491
  });
3162
3492
 
3163
3493
  // src/recipes/upload.ts
3164
- import { defineSlotRecipe as defineSlotRecipe15 } from "@pandacss/dev";
3165
- var uploadSlotRecipe = defineSlotRecipe15({
3494
+ import { defineSlotRecipe as defineSlotRecipe16 } from "@pandacss/dev";
3495
+ var uploadSlotRecipe = defineSlotRecipe16({
3166
3496
  className: "upload",
3167
3497
  jsx: ["MpUpload", "mp-upload"],
3168
3498
  slots: ["root", "resetButton"],
@@ -3247,7 +3577,7 @@ var uploadSlotRecipe = defineSlotRecipe15({
3247
3577
  }
3248
3578
  }
3249
3579
  });
3250
- var uploadListSlotRecipe = defineSlotRecipe15({
3580
+ var uploadListSlotRecipe = defineSlotRecipe16({
3251
3581
  className: "upload-list",
3252
3582
  jsx: ["MpUploadList", "mp-upload-list"],
3253
3583
  slots: ["root", "titleWrapper", "actionWrapper"],
@@ -3290,8 +3620,8 @@ var uploadListSlotRecipe = defineSlotRecipe15({
3290
3620
  });
3291
3621
 
3292
3622
  // src/recipes/dropzone.ts
3293
- import { defineSlotRecipe as defineSlotRecipe16 } from "@pandacss/dev";
3294
- var dropzoneSlotRecipe = defineSlotRecipe16({
3623
+ import { defineSlotRecipe as defineSlotRecipe17 } from "@pandacss/dev";
3624
+ var dropzoneSlotRecipe = defineSlotRecipe17({
3295
3625
  className: "dropzone",
3296
3626
  jsx: ["MpDropzone", "mp-dropzone"],
3297
3627
  slots: [
@@ -3360,7 +3690,7 @@ var dropzoneSlotRecipe = defineSlotRecipe16({
3360
3690
  boxShadow: "focus",
3361
3691
  borderColor: "blue.400",
3362
3692
  _nextTheme: {
3363
- boxShadow: "focus",
3693
+ boxShadow: "none",
3364
3694
  borderColor: "border.focused"
3365
3695
  },
3366
3696
  _hover: {
@@ -3520,8 +3850,8 @@ var dropzoneSlotRecipe = defineSlotRecipe16({
3520
3850
  });
3521
3851
 
3522
3852
  // src/recipes/segmented-control.ts
3523
- import { defineSlotRecipe as defineSlotRecipe17 } from "@pandacss/dev";
3524
- var segmentedControlSlotRecipe = defineSlotRecipe17({
3853
+ import { defineSlotRecipe as defineSlotRecipe18 } from "@pandacss/dev";
3854
+ var segmentedControlSlotRecipe = defineSlotRecipe18({
3525
3855
  className: "segmented-control",
3526
3856
  jsx: ["MpSegmentedControl", "mp-segmented-control"],
3527
3857
  slots: ["root", "item", "hidden", "control", "label", "icon"],
@@ -3607,7 +3937,7 @@ var segmentedControlSlotRecipe = defineSlotRecipe17({
3607
3937
  "input[type=radio]:checked:hover:not(:disabled) + &, input[type=radio][aria-checked=mixed]:hover:not(:disabled) + &": {
3608
3938
  color: "blue.700"
3609
3939
  },
3610
- "input[type=radio]:checked:focus + &, input[type=radio][aria-checked=mixed]:focus + &": {
3940
+ "input[type=radio]:checked:focus-visible + &, input[type=radio][aria-checked=mixed]:focus-visible + &": {
3611
3941
  color: "blue.700",
3612
3942
  boxShadow: "outer",
3613
3943
  _nextTheme: {
@@ -3648,8 +3978,8 @@ var segmentedControlSlotRecipe = defineSlotRecipe17({
3648
3978
  });
3649
3979
 
3650
3980
  // src/recipes/toast.ts
3651
- import { defineSlotRecipe as defineSlotRecipe18 } from "@pandacss/dev";
3652
- var toastSlotRecipe = defineSlotRecipe18({
3981
+ import { defineSlotRecipe as defineSlotRecipe19 } from "@pandacss/dev";
3982
+ var toastSlotRecipe = defineSlotRecipe19({
3653
3983
  className: "toast",
3654
3984
  jsx: ["MpToast", "mp-toast"],
3655
3985
  slots: ["root", "icon", "label"],
@@ -3658,13 +3988,12 @@ var toastSlotRecipe = defineSlotRecipe18({
3658
3988
  display: "flex",
3659
3989
  alignItems: "center",
3660
3990
  gap: "2",
3661
- width: "356px",
3662
3991
  border: "1.5px solid",
3663
3992
  borderRadius: "md",
3664
3993
  backgroundColor: "white",
3665
3994
  padding: "3",
3666
3995
  boxShadow: "lg",
3667
- zIndex: "9999",
3996
+ zIndex: "1700",
3668
3997
  _nextTheme: {
3669
3998
  backgroundColor: "background.neutral"
3670
3999
  }
@@ -3713,8 +4042,8 @@ var toastSlotRecipe = defineSlotRecipe18({
3713
4042
  });
3714
4043
 
3715
4044
  // src/recipes/broadcast.ts
3716
- import { defineSlotRecipe as defineSlotRecipe19 } from "@pandacss/dev";
3717
- var broadcastSlotRecipe = defineSlotRecipe19({
4045
+ import { defineSlotRecipe as defineSlotRecipe20 } from "@pandacss/dev";
4046
+ var broadcastSlotRecipe = defineSlotRecipe20({
3718
4047
  className: "broadcast",
3719
4048
  jsx: ["MpBroadcast", "mp-broadcast"],
3720
4049
  slots: ["root", "container", "wrapper", "icon", "label", "textLink", "action", "close"],
@@ -3850,8 +4179,8 @@ var broadcastSlotRecipe = defineSlotRecipe19({
3850
4179
  });
3851
4180
 
3852
4181
  // src/recipes/rich-text-editor.ts
3853
- import { defineRecipe as defineRecipe12, defineSlotRecipe as defineSlotRecipe20 } from "@pandacss/dev";
3854
- var richTextEditorSlotRecipe = defineSlotRecipe20({
4182
+ import { defineRecipe as defineRecipe12, defineSlotRecipe as defineSlotRecipe21 } from "@pandacss/dev";
4183
+ var richTextEditorSlotRecipe = defineSlotRecipe21({
3855
4184
  className: "rich-text-editor",
3856
4185
  jsx: ["MpRichTextEditor", "mp-rich-text-editor"],
3857
4186
  slots: ["root", "toolbar", "area"],
@@ -4013,8 +4342,8 @@ var RTEStyleProviderRecipe = defineRecipe12({
4013
4342
  });
4014
4343
 
4015
4344
  // src/recipes/date-picker.ts
4016
- import { defineSlotRecipe as defineSlotRecipe21, defineRecipe as defineRecipe13 } from "@pandacss/dev";
4017
- var datePickerSlotRecipe = defineSlotRecipe21({
4345
+ import { defineSlotRecipe as defineSlotRecipe22, defineRecipe as defineRecipe13 } from "@pandacss/dev";
4346
+ var datePickerSlotRecipe = defineSlotRecipe22({
4018
4347
  className: "datepicker",
4019
4348
  jsx: ["MpDatePicker", "mp-date-picker"],
4020
4349
  slots: ["root", "popoverContent"],
@@ -4048,7 +4377,7 @@ var calendarPanelRangeRecipe = defineRecipe13({
4048
4377
  gridTemplateColumns: "repeat(2, 1fr)"
4049
4378
  }
4050
4379
  });
4051
- var timePanelSlotRecipe = defineSlotRecipe21({
4380
+ var timePanelSlotRecipe = defineSlotRecipe22({
4052
4381
  className: "timePanel",
4053
4382
  slots: ["root", "column"],
4054
4383
  jsx: ["TimePanel", "time-panel"],
@@ -4068,7 +4397,7 @@ var timePanelSlotRecipe = defineSlotRecipe21({
4068
4397
  }
4069
4398
  }
4070
4399
  });
4071
- var tableDateSlotRecipe = defineSlotRecipe21({
4400
+ var tableDateSlotRecipe = defineSlotRecipe22({
4072
4401
  className: "tableDate",
4073
4402
  jsx: ["TableDate", "table-date"],
4074
4403
  slots: [
@@ -4097,7 +4426,7 @@ var tableDateSlotRecipe = defineSlotRecipe21({
4097
4426
  }
4098
4427
  }
4099
4428
  });
4100
- var tableMonthSlotRecipe = defineSlotRecipe21({
4429
+ var tableMonthSlotRecipe = defineSlotRecipe22({
4101
4430
  className: "tableMonth",
4102
4431
  jsx: ["TableMonth", "table-month"],
4103
4432
  slots: ["headerRoot", "headerLabel", "monthItemRoot", "monthItemWrapper", "shortcutLabelWrapper"],
@@ -4118,7 +4447,7 @@ var tableMonthSlotRecipe = defineSlotRecipe21({
4118
4447
  }
4119
4448
  }
4120
4449
  });
4121
- var tableYearSlotRecipe = defineSlotRecipe21({
4450
+ var tableYearSlotRecipe = defineSlotRecipe22({
4122
4451
  className: "tableYear",
4123
4452
  jsx: ["TableYear", "table-year"],
4124
4453
  slots: ["headerRoot", "headerLabel", "yearItemRoot", "yearItemWrapper", "shortcutLabelWrapper"],
@@ -4310,7 +4639,7 @@ var dateItemRecipe = defineRecipe13({
4310
4639
  },
4311
4640
  staticCss: ["*"]
4312
4641
  });
4313
- var pinbarSlotRecipe = defineSlotRecipe21({
4642
+ var pinbarSlotRecipe = defineSlotRecipe22({
4314
4643
  className: "pinbar",
4315
4644
  slots: ["root", "pinbar"],
4316
4645
  base: {
@@ -4550,8 +4879,8 @@ var timeItemRecipe = defineRecipe13({
4550
4879
  });
4551
4880
 
4552
4881
  // src/recipes/carousel.ts
4553
- import { defineSlotRecipe as defineSlotRecipe22 } from "@pandacss/dev";
4554
- var carouselSlotRecipe = defineSlotRecipe22({
4882
+ import { defineSlotRecipe as defineSlotRecipe23 } from "@pandacss/dev";
4883
+ var carouselSlotRecipe = defineSlotRecipe23({
4555
4884
  className: "carousel",
4556
4885
  jsx: ["MpCarousel", "mp-carousel"],
4557
4886
  slots: [
@@ -4604,8 +4933,8 @@ var carouselSlotRecipe = defineSlotRecipe22({
4604
4933
  });
4605
4934
 
4606
4935
  // src/recipes/chart.ts
4607
- import { defineSlotRecipe as defineSlotRecipe23 } from "@pandacss/dev";
4608
- var chartSlotRecipe = defineSlotRecipe23({
4936
+ import { defineSlotRecipe as defineSlotRecipe24 } from "@pandacss/dev";
4937
+ var chartSlotRecipe = defineSlotRecipe24({
4609
4938
  className: "chart",
4610
4939
  jsx: ["MpChart", "mp-chart"],
4611
4940
  slots: [
@@ -4710,8 +5039,8 @@ var chartSlotRecipe = defineSlotRecipe23({
4710
5039
  });
4711
5040
 
4712
5041
  // src/recipes/autocomplete.ts
4713
- import { defineSlotRecipe as defineSlotRecipe24 } from "@pandacss/dev";
4714
- var autocompleteSlotRecipe = defineSlotRecipe24({
5042
+ import { defineSlotRecipe as defineSlotRecipe25 } from "@pandacss/dev";
5043
+ var autocompleteSlotRecipe = defineSlotRecipe25({
4715
5044
  className: "autocomplete",
4716
5045
  jsx: ["MpAutocomplete", "mp-autocomplete"],
4717
5046
  slots: ["groupText", "popoverContent", "buttonAction", "emptyText", "contentLoading", "input"],
@@ -4765,8 +5094,8 @@ var autocompleteSlotRecipe = defineSlotRecipe24({
4765
5094
  });
4766
5095
 
4767
5096
  // src/recipes/timeline.ts
4768
- import { defineSlotRecipe as defineSlotRecipe25 } from "@pandacss/dev";
4769
- var timelineSlotRecipe = defineSlotRecipe25({
5097
+ import { defineSlotRecipe as defineSlotRecipe26 } from "@pandacss/dev";
5098
+ var timelineSlotRecipe = defineSlotRecipe26({
4770
5099
  className: "timeline",
4771
5100
  jsx: [
4772
5101
  "MpTimeline",
@@ -4808,7 +5137,7 @@ var timelineSlotRecipe = defineSlotRecipe25({
4808
5137
  }
4809
5138
  }
4810
5139
  });
4811
- var timelineDocumentSlotRecipe = defineSlotRecipe25({
5140
+ var timelineDocumentSlotRecipe = defineSlotRecipe26({
4812
5141
  className: "timelineDocument",
4813
5142
  jsx: ["MpTimelineDocument", "mp-timeline-document"],
4814
5143
  slots: ["root", "content", "title", "description", "fileSize"],
@@ -4866,7 +5195,7 @@ var timelineDocumentSlotRecipe = defineSlotRecipe25({
4866
5195
  icon: false
4867
5196
  }
4868
5197
  });
4869
- var timelineLogSlotRecipe = defineSlotRecipe25({
5198
+ var timelineLogSlotRecipe = defineSlotRecipe26({
4870
5199
  className: "timelineLog",
4871
5200
  jsx: ["MpTimelineLog", "MpTimelineLogItem", "mp-timeline-log", "mp-timeline-log-item"],
4872
5201
  slots: ["root", "log", "logText", "logIcon", "content", "logItem"],
@@ -4898,7 +5227,7 @@ var timelineLogSlotRecipe = defineSlotRecipe25({
4898
5227
  }
4899
5228
  }
4900
5229
  });
4901
- var timelineSeparatorSlotRecipe = defineSlotRecipe25({
5230
+ var timelineSeparatorSlotRecipe = defineSlotRecipe26({
4902
5231
  className: "timelineSeparetor",
4903
5232
  jsx: ["MpTimelineSeparator", "mp-timeline-separator"],
4904
5233
  slots: ["root", "topConnector", "bottomConnector"],
@@ -4930,12 +5259,15 @@ var timelineSeparatorSlotRecipe = defineSlotRecipe25({
4930
5259
  backgroundColor: "transparent"
4931
5260
  },
4932
5261
  _nextTheme: {
4933
- backgroundColor: "border.default"
5262
+ backgroundColor: "border.default",
5263
+ "&[data-position=last]": {
5264
+ backgroundColor: "transparent"
5265
+ }
4934
5266
  }
4935
5267
  }
4936
5268
  }
4937
5269
  });
4938
- var timelineAccordionSlotRecipe = defineSlotRecipe25({
5270
+ var timelineAccordionSlotRecipe = defineSlotRecipe26({
4939
5271
  className: "timelineAccordion",
4940
5272
  jsx: ["MpTimelineAccordion", "mp-timeline-accordion"],
4941
5273
  slots: ["body", "separator", "icon", "topConnector", "bottomConnector", "title", "label"],
@@ -4973,7 +5305,10 @@ var timelineAccordionSlotRecipe = defineSlotRecipe25({
4973
5305
  },
4974
5306
  roundedTop: "full",
4975
5307
  _nextTheme: {
4976
- backgroundColor: "border.default"
5308
+ backgroundColor: "border.default",
5309
+ "&[data-position=last]": {
5310
+ backgroundColor: "transparent"
5311
+ }
4977
5312
  }
4978
5313
  },
4979
5314
  title: {
@@ -4993,8 +5328,8 @@ var timelineAccordionSlotRecipe = defineSlotRecipe25({
4993
5328
  });
4994
5329
 
4995
5330
  // src/recipes/banner.ts
4996
- import { defineRecipe as defineRecipe14, defineSlotRecipe as defineSlotRecipe26 } from "@pandacss/dev";
4997
- var bannerSlotRecipe = defineSlotRecipe26({
5331
+ import { defineRecipe as defineRecipe14, defineSlotRecipe as defineSlotRecipe27 } from "@pandacss/dev";
5332
+ var bannerSlotRecipe = defineSlotRecipe27({
4998
5333
  className: "banner",
4999
5334
  jsx: ["MpBanner", "mp-banner"],
5000
5335
  slots: ["root", "body"],
@@ -5065,7 +5400,6 @@ var bannerTitleRecipe = defineRecipe14({
5065
5400
  lineHeight: "md",
5066
5401
  letterSpacing: "normal",
5067
5402
  color: "dark",
5068
- marginTop: "0.5",
5069
5403
  marginBottom: "1",
5070
5404
  _nextTheme: {
5071
5405
  color: "text.default"
@@ -5093,7 +5427,7 @@ var bannerDescriptionRecipe = defineRecipe14({
5093
5427
  compoundVariants: [],
5094
5428
  defaultVariants: {}
5095
5429
  });
5096
- var bannerIconSlotRecipe = defineSlotRecipe26({
5430
+ var bannerIconSlotRecipe = defineSlotRecipe27({
5097
5431
  className: "banner-icon",
5098
5432
  jsx: ["MpBannerIcon", "mp-banner-icon"],
5099
5433
  slots: ["root", "custom"],
@@ -5148,8 +5482,8 @@ var bannerCloseButtonRecipe = defineRecipe14({
5148
5482
  });
5149
5483
 
5150
5484
  // src/recipes/color-picker.ts
5151
- import { defineSlotRecipe as defineSlotRecipe27 } from "@pandacss/dev";
5152
- var colorPickerSlotRecipe = defineSlotRecipe27({
5485
+ import { defineSlotRecipe as defineSlotRecipe28 } from "@pandacss/dev";
5486
+ var colorPickerSlotRecipe = defineSlotRecipe28({
5153
5487
  className: "color-picker",
5154
5488
  jsx: ["MpColorPicker", "mp-color-picker"],
5155
5489
  slots: [
@@ -5322,8 +5656,8 @@ var colorPickerSlotRecipe = defineSlotRecipe27({
5322
5656
  });
5323
5657
 
5324
5658
  // src/recipes/slider.ts
5325
- import { defineSlotRecipe as defineSlotRecipe28 } from "@pandacss/dev";
5326
- var sliderSlotRecipe = defineSlotRecipe28({
5659
+ import { defineSlotRecipe as defineSlotRecipe29 } from "@pandacss/dev";
5660
+ var sliderSlotRecipe = defineSlotRecipe29({
5327
5661
  className: "slider",
5328
5662
  jsx: ["MpSlider", "mp-slider"],
5329
5663
  slots: [
@@ -5432,8 +5766,8 @@ var sliderSlotRecipe = defineSlotRecipe28({
5432
5766
  });
5433
5767
 
5434
5768
  // src/recipes/tour.ts
5435
- import { defineSlotRecipe as defineSlotRecipe29 } from "@pandacss/dev";
5436
- var tourSlotRecipe = defineSlotRecipe29({
5769
+ import { defineSlotRecipe as defineSlotRecipe30 } from "@pandacss/dev";
5770
+ var tourSlotRecipe = defineSlotRecipe30({
5437
5771
  className: "tour",
5438
5772
  jsx: ["MpTour", "mp-tour"],
5439
5773
  slots: ["root", "overlay", "panel"],
@@ -5532,7 +5866,8 @@ var slotRecipes = {
5532
5866
  tabListSlotRecipe,
5533
5867
  colorPickerSlotRecipe,
5534
5868
  sliderSlotRecipe,
5535
- tourSlotRecipe
5869
+ tourSlotRecipe,
5870
+ aireneButtonSlotRecipe
5536
5871
  };
5537
5872
 
5538
5873
  // src/text-styles.ts
@@ -5551,7 +5886,7 @@ var textStyles = defineTextStyles({
5551
5886
  },
5552
5887
  label: {
5553
5888
  sm: { value: { fontFamily: "var(--font-inter)", fontSize: "sm", lineHeight: "sm" } },
5554
- md: { value: { fontFamily: "var(--font-inter)", fontSize: "md", lineHeight: "lg" } }
5889
+ md: { value: { fontFamily: "var(--font-inter)", fontSize: "md", lineHeight: "md" } }
5555
5890
  },
5556
5891
  h3: {
5557
5892
  value: {
@@ -5600,6 +5935,7 @@ var colors = defineTokens2.colors({
5600
5935
  background: { value: "#F1F5F9" },
5601
5936
  overlay: { value: "rgba(22, 26, 32, 0.8)" },
5602
5937
  white: { value: "#FFFFFF" },
5938
+ vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
5603
5939
  whiteAlpha: {
5604
5940
  50: { value: "rgba(255, 255, 255, 0.04)" },
5605
5941
  100: { value: "rgba(255, 255, 255, 0.06)" },
@@ -5947,6 +6283,7 @@ var colors2 = defineTokens13.colors({
5947
6283
  debug: { value: "red" },
5948
6284
  currentcolor: { value: "currentcolor" },
5949
6285
  white: { value: "#FFFFFF" },
6286
+ vibrantPurple: { value: "linear-gradient(98deg, #F8F9FB 0%, #B5A2EC 50.01%, #4B61DD 100%)" },
5950
6287
  dark: {
5951
6288
  "-100": {
5952
6289
  value: "#101214"