@mekari/pixel3-theme 0.0.11 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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_dev49 = require("@pandacss/dev");
28
+ var import_dev53 = require("@pandacss/dev");
29
29
 
30
30
  // src/breakpoints.ts
31
31
  var breakpoints = {
@@ -1055,58 +1055,56 @@ var spinnerRecipe = (0, import_dev10.defineRecipe)({
1055
1055
 
1056
1056
  // src/recipes/accordion.ts
1057
1057
  var import_dev11 = require("@pandacss/dev");
1058
- var accordion = (0, import_dev11.defineSlotRecipe)({
1058
+ var accordionSlotRecipe = (0, import_dev11.defineSlotRecipe)({
1059
1059
  className: "accordion",
1060
- slots: ["root", "item", "trigger", "content"],
1060
+ slots: ["header", "item", "panel"],
1061
+ jsx: [
1062
+ "MpAccordionHeader",
1063
+ "MpAccordionItem",
1064
+ "MpAccordionPanel",
1065
+ "mp-accordion-header",
1066
+ "mp-accordion-item",
1067
+ "mp-accordion-panel"
1068
+ ],
1061
1069
  base: {
1062
- root: {
1063
- divideY: "1px",
1064
- width: "full"
1065
- },
1066
- trigger: {
1067
- alignItems: "center",
1068
- color: "fg.default",
1069
- cursor: "pointer",
1070
+ header: {
1070
1071
  display: "flex",
1071
- fontWeight: "normal",
1072
- justifyContent: "space-between",
1073
- textStyle: "lg",
1074
- width: "full",
1075
- fontSize: "lg"
1072
+ alignItems: "center",
1073
+ width: "100%",
1074
+ outline: 0,
1075
+ gap: 4,
1076
+ transition: "all 0.2s",
1077
+ py: 3,
1078
+ fontWeight: "semiBold",
1079
+ fontSize: "md",
1080
+ color: "dark",
1081
+ _disabled: { opacity: "0.4", cursor: "not-allowed" }
1076
1082
  },
1077
- content: {
1078
- color: "fg.muted",
1079
- display: "grid",
1080
- gridTemplateRows: "0fr",
1081
- transitionProperty: "grid-template-rows, padding-bottom",
1082
- transitionDuration: "normal",
1083
- transitionTimingFunction: "default",
1084
- _open: {
1085
- gridTemplateRows: "1fr"
1086
- },
1087
- "& > div": {
1088
- overflow: "hidden"
1089
- }
1083
+ item: {
1084
+ borderBottomWidth: "1px",
1085
+ borderColor: "gray.100",
1086
+ _last: { borderBottomWidth: "1px", borderColor: "gray.100" }
1087
+ },
1088
+ panel: {
1089
+ py: 3
1090
1090
  }
1091
1091
  },
1092
- defaultVariants: {
1093
- size: "md"
1094
- },
1095
1092
  variants: {
1096
- size: {
1097
- md: {
1098
- trigger: {
1099
- py: "4"
1100
- },
1101
- content: {
1102
- pb: "6",
1103
- pr: "8",
1104
- _closed: {
1105
- pb: "0"
1106
- }
1093
+ isClickable: {
1094
+ true: {
1095
+ header: {
1096
+ cursor: "pointer"
1097
+ }
1098
+ },
1099
+ false: {
1100
+ header: {
1101
+ cursor: "default"
1107
1102
  }
1108
1103
  }
1109
1104
  }
1105
+ },
1106
+ defaultVariants: {
1107
+ isClickable: true
1110
1108
  }
1111
1109
  });
1112
1110
 
@@ -1431,20 +1429,37 @@ var tooltipRecipe = (0, import_dev15.defineRecipe)({
1431
1429
 
1432
1430
  // src/recipes/tabs.ts
1433
1431
  var import_dev16 = require("@pandacss/dev");
1434
- var tabListRecipe = (0, import_dev16.defineRecipe)({
1432
+ var tabListSlotRecipe = (0, import_dev16.defineSlotRecipe)({
1435
1433
  className: "tab-list",
1436
1434
  jsx: ["MpTabList", "mp-tab-list"],
1435
+ slots: ["root", "list"],
1437
1436
  base: {
1438
- display: "flex",
1439
- overflow: "auto",
1440
- gap: "1.5rem",
1441
- fontSize: "md",
1442
- color: "gray.600",
1443
- marginBottom: 6,
1444
- padding: 0.5,
1445
- alignItems: "center",
1446
- justifyContent: "flex-start",
1447
- maxWidth: "full"
1437
+ root: {
1438
+ position: "relative",
1439
+ "&[data-border=true]": {
1440
+ _before: {
1441
+ content: '""',
1442
+ height: "1px",
1443
+ background: "gray.100",
1444
+ position: "absolute",
1445
+ right: 0,
1446
+ left: 0,
1447
+ bottom: "1px"
1448
+ }
1449
+ }
1450
+ },
1451
+ list: {
1452
+ display: "flex",
1453
+ overflow: "auto",
1454
+ gap: "1.5rem",
1455
+ fontSize: "md",
1456
+ color: "gray.600",
1457
+ marginBottom: 6,
1458
+ padding: 0.5,
1459
+ alignItems: "center",
1460
+ justifyContent: "flex-start",
1461
+ maxWidth: "full"
1462
+ }
1448
1463
  }
1449
1464
  });
1450
1465
  var tabRecipe = (0, import_dev16.defineRecipe)({
@@ -3038,6 +3053,26 @@ var calendarPanelRangeRecipe = (0, import_dev33.defineRecipe)({
3038
3053
  gridTemplateColumns: "repeat(2, 1fr)"
3039
3054
  }
3040
3055
  });
3056
+ var timePanelSlotRecipe = (0, import_dev33.defineSlotRecipe)({
3057
+ className: "timePanel",
3058
+ slots: ["root", "column"],
3059
+ jsx: ["TimePanel", "time-panel"],
3060
+ base: {
3061
+ root: {
3062
+ display: "flex",
3063
+ flexDirection: "row",
3064
+ gap: "0.5"
3065
+ },
3066
+ column: {
3067
+ display: "flex",
3068
+ flexDirection: "column",
3069
+ height: "224px",
3070
+ overflowY: "scroll",
3071
+ overflowX: "hidden",
3072
+ py: "10px"
3073
+ }
3074
+ }
3075
+ });
3041
3076
  var tableDateSlotRecipe = (0, import_dev33.defineSlotRecipe)({
3042
3077
  className: "tableDate",
3043
3078
  jsx: ["TableDate", "table-date"],
@@ -3535,9 +3570,256 @@ var chartSlotRecipe = (0, import_dev35.defineSlotRecipe)({
3535
3570
  }
3536
3571
  });
3537
3572
 
3538
- // src/recipes/banner.ts
3573
+ // src/recipes/autocomplete.ts
3539
3574
  var import_dev36 = require("@pandacss/dev");
3540
- var bannerSlotRecipe = (0, import_dev36.defineSlotRecipe)({
3575
+ var autocompleteSlotRecipe = (0, import_dev36.defineSlotRecipe)({
3576
+ className: "autocomplete",
3577
+ jsx: ["MpAutocomplete", "mp-autocomplete"],
3578
+ slots: ["groupText", "popoverContent", "buttonAction", "emptyText", "contentLoading"],
3579
+ base: {
3580
+ groupText: {
3581
+ px: 3,
3582
+ py: 2
3583
+ },
3584
+ popoverContent: {
3585
+ maxHeight: "300px",
3586
+ overflowY: "auto",
3587
+ position: "relative"
3588
+ },
3589
+ buttonAction: {
3590
+ cursor: "pointer",
3591
+ width: "full",
3592
+ textAlign: "center",
3593
+ roundedTop: "0",
3594
+ borderTopWidth: "1px",
3595
+ borderColor: "blue.50",
3596
+ color: "blue.400",
3597
+ position: "sticky",
3598
+ bottom: "0px",
3599
+ bg: "white",
3600
+ fontSize: "md",
3601
+ zIndex: "999",
3602
+ py: 2,
3603
+ height: "9.5",
3604
+ _hover: { color: "blue.500" }
3605
+ },
3606
+ emptyText: {
3607
+ px: 3,
3608
+ py: 2
3609
+ },
3610
+ contentLoading: {
3611
+ px: 3,
3612
+ py: 2,
3613
+ display: "flex",
3614
+ alignItems: "center",
3615
+ gap: 3
3616
+ }
3617
+ }
3618
+ });
3619
+
3620
+ // src/recipes/timeline.ts
3621
+ var import_dev37 = require("@pandacss/dev");
3622
+ var timelineSlotRecipe = (0, import_dev37.defineSlotRecipe)({
3623
+ className: "timeline",
3624
+ jsx: [
3625
+ "MpTimeline",
3626
+ "MpTimelineBody",
3627
+ "MpTimelineCaption",
3628
+ "MpTimelineContent",
3629
+ "MpTimelineItem",
3630
+ "mp-timeline",
3631
+ "mp-timeline-body",
3632
+ "mp-timeline-caption",
3633
+ "mp-timeline-content",
3634
+ "mp-timeline-item"
3635
+ ],
3636
+ slots: ["root", "body", "caption", "content", "item"],
3637
+ base: {
3638
+ root: {
3639
+ maxWidth: "sm"
3640
+ },
3641
+ body: {
3642
+ marginLeft: "3",
3643
+ paddingTop: "6px",
3644
+ paddingBottom: "3",
3645
+ width: "full"
3646
+ },
3647
+ caption: {
3648
+ fontSize: "sm",
3649
+ color: "gray.400",
3650
+ lineHeight: "sm",
3651
+ marginTop: "0.5"
3652
+ },
3653
+ content: {
3654
+ paddingTop: 3
3655
+ },
3656
+ item: {
3657
+ display: "flex"
3658
+ }
3659
+ }
3660
+ });
3661
+ var timelineDocumentSlotRecipe = (0, import_dev37.defineSlotRecipe)({
3662
+ className: "timelineDocument",
3663
+ jsx: ["MpTimelineDocument", "mp-timeline-document"],
3664
+ slots: ["root", "content", "title", "description", "fileSize"],
3665
+ base: {
3666
+ root: {
3667
+ display: "flex",
3668
+ alignItems: "center",
3669
+ paddingX: "3",
3670
+ paddingY: "2",
3671
+ borderRadius: "lg",
3672
+ borderWidth: "1px",
3673
+ borderColor: "gray.100",
3674
+ width: "full",
3675
+ gap: "3"
3676
+ },
3677
+ content: {
3678
+ display: "flex",
3679
+ flexDirection: "column"
3680
+ },
3681
+ title: {
3682
+ fontSize: "sm",
3683
+ lineHeight: "md",
3684
+ fontWeight: "regular",
3685
+ letterSpacing: "normal",
3686
+ color: "dark"
3687
+ },
3688
+ description: {
3689
+ display: "flex",
3690
+ alignItems: "center"
3691
+ },
3692
+ fileSize: {
3693
+ fontSize: "sm",
3694
+ lineHeight: "md",
3695
+ fontWeight: "regular",
3696
+ letterSpacing: "normal",
3697
+ color: "gray.400"
3698
+ }
3699
+ },
3700
+ variants: {
3701
+ icon: {
3702
+ true: { content: { marginLeft: "3" } },
3703
+ false: { content: { marginLeft: "0" } }
3704
+ }
3705
+ },
3706
+ defaultVariants: {
3707
+ icon: false
3708
+ }
3709
+ });
3710
+ var timelineLogSlotRecipe = (0, import_dev37.defineSlotRecipe)({
3711
+ className: "timelineLog",
3712
+ jsx: ["MpTimelineLog", "MpTimelineLogItem", "mp-timeline-log", "mp-timeline-log-item"],
3713
+ slots: ["root", "log", "logText", "logIcon", "content", "logItem"],
3714
+ base: {
3715
+ root: {
3716
+ display: "flex",
3717
+ flexDirection: "column"
3718
+ },
3719
+ log: {
3720
+ display: "flex",
3721
+ cursor: "pointer"
3722
+ },
3723
+ logText: {
3724
+ color: "gray.400",
3725
+ _groupHover: {
3726
+ color: "blue.500"
3727
+ }
3728
+ },
3729
+ logIcon: {
3730
+ color: "gray.400",
3731
+ _groupHover: { color: "blue.500" }
3732
+ },
3733
+ content: {
3734
+ listStyleType: "disc",
3735
+ paddingLeft: 5
3736
+ },
3737
+ logItem: {
3738
+ color: "gray.600"
3739
+ }
3740
+ }
3741
+ });
3742
+ var timelineSeparatorSlotRecipe = (0, import_dev37.defineSlotRecipe)({
3743
+ className: "timelineSeparetor",
3744
+ jsx: ["MpTimelineSeparator", "mp-timeline-separator"],
3745
+ slots: ["root", "topConnector", "bottomConnector"],
3746
+ base: {
3747
+ root: {
3748
+ display: "flex",
3749
+ flexDirection: "column",
3750
+ alignItems: "center"
3751
+ },
3752
+ topConnector: {
3753
+ height: "6px",
3754
+ width: "2px",
3755
+ backgroundColor: "gray.100",
3756
+ "&[data-position=first]": {
3757
+ backgroundColor: "transparent"
3758
+ }
3759
+ },
3760
+ bottomConnector: {
3761
+ height: "100%",
3762
+ flexGrow: 1,
3763
+ width: "2px",
3764
+ roundedTop: "2px",
3765
+ backgroundColor: "gray.100",
3766
+ "&[data-position=last]": {
3767
+ backgroundColor: "transparent"
3768
+ }
3769
+ }
3770
+ }
3771
+ });
3772
+ var timelineAccordionSlotRecipe = (0, import_dev37.defineSlotRecipe)({
3773
+ className: "timelineAccordion",
3774
+ jsx: ["MpTimelineAccordion", "mp-timeline-accordion"],
3775
+ slots: ["body", "separator", "icon", "topConnector", "bottomConnector", "title", "label"],
3776
+ base: {
3777
+ body: {
3778
+ display: "flex"
3779
+ },
3780
+ separator: {
3781
+ display: "flex",
3782
+ flexDirection: "column",
3783
+ alignItems: "center"
3784
+ },
3785
+ icon: {
3786
+ my: 1,
3787
+ cursor: "pointer"
3788
+ },
3789
+ topConnector: {
3790
+ height: "4px",
3791
+ width: "2px",
3792
+ backgroundColor: "gray.100",
3793
+ "&[data-position=first]": {
3794
+ backgroundColor: "transparent"
3795
+ },
3796
+ roundedBottom: "full"
3797
+ },
3798
+ bottomConnector: {
3799
+ flexGrow: 1,
3800
+ width: "2px",
3801
+ backgroundColor: "gray.100",
3802
+ "&[data-position=last]": {
3803
+ backgroundColor: "transparent"
3804
+ },
3805
+ roundedTop: "full"
3806
+ },
3807
+ title: {
3808
+ paddingTop: 1
3809
+ },
3810
+ label: {
3811
+ fontSize: "md",
3812
+ lineHeight: "md",
3813
+ color: "dark",
3814
+ fontWeight: "semibold",
3815
+ letterSpacing: "normal"
3816
+ }
3817
+ }
3818
+ });
3819
+
3820
+ // src/recipes/banner.ts
3821
+ var import_dev38 = require("@pandacss/dev");
3822
+ var bannerSlotRecipe = (0, import_dev38.defineSlotRecipe)({
3541
3823
  className: "banner",
3542
3824
  jsx: ["MpBanner", "mp-banner"],
3543
3825
  slots: ["root", "body"],
@@ -3578,7 +3860,7 @@ var bannerSlotRecipe = (0, import_dev36.defineSlotRecipe)({
3578
3860
  variant: "info"
3579
3861
  }
3580
3862
  });
3581
- var bannerTitleRecipe = (0, import_dev36.defineRecipe)({
3863
+ var bannerTitleRecipe = (0, import_dev38.defineRecipe)({
3582
3864
  className: "banner-title",
3583
3865
  jsx: ["MpBannerTitle", "mp-banner-title"],
3584
3866
  base: {
@@ -3595,7 +3877,7 @@ var bannerTitleRecipe = (0, import_dev36.defineRecipe)({
3595
3877
  compoundVariants: [],
3596
3878
  defaultVariants: {}
3597
3879
  });
3598
- var bannerDescriptionRecipe = (0, import_dev36.defineRecipe)({
3880
+ var bannerDescriptionRecipe = (0, import_dev38.defineRecipe)({
3599
3881
  className: "banner-description",
3600
3882
  jsx: ["MpBannerDescription", "mp-banner-description"],
3601
3883
  base: {
@@ -3610,7 +3892,7 @@ var bannerDescriptionRecipe = (0, import_dev36.defineRecipe)({
3610
3892
  compoundVariants: [],
3611
3893
  defaultVariants: {}
3612
3894
  });
3613
- var bannerIconSlotRecipe = (0, import_dev36.defineSlotRecipe)({
3895
+ var bannerIconSlotRecipe = (0, import_dev38.defineSlotRecipe)({
3614
3896
  className: "banner-icon",
3615
3897
  jsx: ["MpBannerIcon", "mp-banner-icon"],
3616
3898
  slots: ["root", "custom"],
@@ -3633,7 +3915,7 @@ var bannerIconSlotRecipe = (0, import_dev36.defineSlotRecipe)({
3633
3915
  compoundVariants: [],
3634
3916
  defaultVariants: {}
3635
3917
  });
3636
- var bannerLinkRecipe = (0, import_dev36.defineRecipe)({
3918
+ var bannerLinkRecipe = (0, import_dev38.defineRecipe)({
3637
3919
  className: "banner-link",
3638
3920
  jsx: ["MpBannerLink", "mp-banner-link"],
3639
3921
  base: {
@@ -3646,7 +3928,7 @@ var bannerLinkRecipe = (0, import_dev36.defineRecipe)({
3646
3928
  compoundVariants: [],
3647
3929
  defaultVariants: {}
3648
3930
  });
3649
- var bannerCloseButtonRecipe = (0, import_dev36.defineRecipe)({
3931
+ var bannerCloseButtonRecipe = (0, import_dev38.defineRecipe)({
3650
3932
  className: "banner-close-button",
3651
3933
  jsx: ["MpBannerCloseButton", "mp-banner-close-button"],
3652
3934
  base: {
@@ -3665,6 +3947,208 @@ var bannerCloseButtonRecipe = (0, import_dev36.defineRecipe)({
3665
3947
  defaultVariants: {}
3666
3948
  });
3667
3949
 
3950
+ // src/recipes/color-picker.ts
3951
+ var import_dev39 = require("@pandacss/dev");
3952
+ var colorPickerSlotRecipe = (0, import_dev39.defineSlotRecipe)({
3953
+ className: "color-picker",
3954
+ jsx: ["MpColorPicker", "mp-color-picker"],
3955
+ slots: [
3956
+ "root",
3957
+ "popoverTrigger",
3958
+ "boxColor",
3959
+ "inputTrigger",
3960
+ "iconDropdown",
3961
+ "popoverContent",
3962
+ "wrapperAdvance",
3963
+ "wrapperBasic",
3964
+ "wrapperSaturation",
3965
+ "wrapperHue",
3966
+ "wrapperInput",
3967
+ "boxPreset",
3968
+ "wrapperPreset",
3969
+ "wrapperBasicPreset"
3970
+ ],
3971
+ base: {
3972
+ root: {
3973
+ width: "280px",
3974
+ position: "relative",
3975
+ display: "flex",
3976
+ flexDirection: "column",
3977
+ gap: "2"
3978
+ },
3979
+ popoverTrigger: {
3980
+ display: "flex",
3981
+ alignItems: "center",
3982
+ cursor: "pointer",
3983
+ position: "relative",
3984
+ height: "38px",
3985
+ pl: "2",
3986
+ pr: "3",
3987
+ borderRadius: "md",
3988
+ border: "1px solid",
3989
+ _focus: {
3990
+ boxShadow: "outline !important",
3991
+ borderColor: "blue.400 !important",
3992
+ outline: "none"
3993
+ }
3994
+ },
3995
+ boxColor: {
3996
+ flex: "none",
3997
+ width: "6",
3998
+ height: "6",
3999
+ borderWidth: "1px",
4000
+ borderColor: "gray.50",
4001
+ borderRadius: "sm",
4002
+ mr: "2"
4003
+ },
4004
+ inputTrigger: {
4005
+ margin: "-12px",
4006
+ textTransform: "uppercase"
4007
+ },
4008
+ iconDropdown: {
4009
+ position: "absolute",
4010
+ right: "3",
4011
+ ml: "2",
4012
+ _focus: {
4013
+ outline: "none"
4014
+ }
4015
+ },
4016
+ popoverContent: {
4017
+ bg: "white",
4018
+ rounded: "md",
4019
+ shadow: "lg",
4020
+ borderWidth: "1px",
4021
+ borderColor: "gray.400"
4022
+ },
4023
+ wrapperAdvance: {
4024
+ display: "flex",
4025
+ flexDirection: "column",
4026
+ position: "relative",
4027
+ width: "280px",
4028
+ padding: "3",
4029
+ gap: "3"
4030
+ },
4031
+ wrapperBasic: {
4032
+ display: "flex",
4033
+ flexDirection: "column",
4034
+ position: "relative",
4035
+ width: "188px",
4036
+ padding: "3",
4037
+ gap: "3"
4038
+ },
4039
+ wrapperSaturation: {
4040
+ position: "relative",
4041
+ width: "100%",
4042
+ height: "144px",
4043
+ overflow: "hidden"
4044
+ },
4045
+ wrapperHue: {
4046
+ position: "relative",
4047
+ height: "28px"
4048
+ },
4049
+ wrapperInput: {
4050
+ position: "relative",
4051
+ display: "flex",
4052
+ gap: "2"
4053
+ },
4054
+ boxPreset: {
4055
+ display: "flex",
4056
+ flexDirection: "column",
4057
+ gap: "2",
4058
+ position: "relative"
4059
+ },
4060
+ wrapperPreset: {
4061
+ position: "relative",
4062
+ display: "flex",
4063
+ flexWrap: "wrap",
4064
+ gap: "5px"
4065
+ },
4066
+ wrapperBasicPreset: {
4067
+ position: "relative",
4068
+ display: "flex",
4069
+ flexWrap: "wrap",
4070
+ gap: "4px"
4071
+ }
4072
+ }
4073
+ });
4074
+
4075
+ // src/recipes/slider.ts
4076
+ var import_dev40 = require("@pandacss/dev");
4077
+ var sliderSlotRecipe = (0, import_dev40.defineSlotRecipe)({
4078
+ className: "slider",
4079
+ jsx: ["MpSlider", "mp-slider"],
4080
+ slots: [
4081
+ "root",
4082
+ "labelWrapper",
4083
+ "sliderWrapper",
4084
+ "progress",
4085
+ "slider",
4086
+ "inputWrapper",
4087
+ "input",
4088
+ "legendWrapper"
4089
+ ],
4090
+ base: {
4091
+ root: {
4092
+ position: "relative",
4093
+ width: "full",
4094
+ display: "flex",
4095
+ flexDirection: "column",
4096
+ gap: "10px"
4097
+ },
4098
+ labelWrapper: {
4099
+ display: "flex",
4100
+ justifyContent: "space-between"
4101
+ },
4102
+ sliderWrapper: {
4103
+ position: "relative",
4104
+ width: "full",
4105
+ display: "flex",
4106
+ flexDirection: "column"
4107
+ },
4108
+ progress: {
4109
+ position: "relative",
4110
+ height: "2",
4111
+ borderRadius: "100px"
4112
+ },
4113
+ slider: {
4114
+ position: "absolute",
4115
+ height: "2",
4116
+ borderRadius: "100px"
4117
+ },
4118
+ inputWrapper: {
4119
+ position: "relative"
4120
+ },
4121
+ input: {
4122
+ appearance: "none",
4123
+ position: "absolute",
4124
+ width: "full",
4125
+ height: "2",
4126
+ top: "-8px",
4127
+ background: "none",
4128
+ outline: "none",
4129
+ _focusVisible: {
4130
+ borderRadius: "100px",
4131
+ borderWidth: "1px",
4132
+ borderStyle: "solid",
4133
+ borderColor: "blue.400",
4134
+ boxShadow: "focus"
4135
+ },
4136
+ "&::-webkit-slider-thumb": {
4137
+ appearance: "none",
4138
+ width: "5",
4139
+ height: "5",
4140
+ borderRadius: "full",
4141
+ borderStyle: "solid",
4142
+ borderColor: "gray.100",
4143
+ boxShadow: "sm",
4144
+ filter: "drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.05)) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.10))",
4145
+ transition: "border-color 250ms",
4146
+ pointerEvents: "auto"
4147
+ }
4148
+ }
4149
+ }
4150
+ });
4151
+
3668
4152
  // src/recipes/index.ts
3669
4153
  var recipes = {
3670
4154
  buttonRecipe,
@@ -3678,7 +4162,6 @@ var recipes = {
3678
4162
  badgeRecipe,
3679
4163
  textareaRecipe,
3680
4164
  tooltipRecipe,
3681
- tabListRecipe,
3682
4165
  tabRecipe,
3683
4166
  selectedBorderRecipe,
3684
4167
  tableRecipe,
@@ -3697,7 +4180,7 @@ var recipes = {
3697
4180
  timeItemRecipe
3698
4181
  };
3699
4182
  var slotRecipes = {
3700
- accordion,
4183
+ accordionSlotRecipe,
3701
4184
  checkboxSlotRecipe,
3702
4185
  radioSlotRecipe,
3703
4186
  sharedSlotRecipe,
@@ -3723,17 +4206,27 @@ var slotRecipes = {
3723
4206
  broadcastSlotRecipe,
3724
4207
  richTextEditorSlotRecipe,
3725
4208
  datePickerSlotRecipe,
4209
+ timePanelSlotRecipe,
3726
4210
  tableDateSlotRecipe,
3727
4211
  tableMonthSlotRecipe,
3728
4212
  tableYearSlotRecipe,
3729
4213
  pinbarSlotRecipe,
3730
4214
  carouselSlotRecipe,
3731
- chartSlotRecipe
4215
+ chartSlotRecipe,
4216
+ autocompleteSlotRecipe,
4217
+ timelineSlotRecipe,
4218
+ timelineDocumentSlotRecipe,
4219
+ timelineLogSlotRecipe,
4220
+ timelineSeparatorSlotRecipe,
4221
+ timelineAccordionSlotRecipe,
4222
+ tabListSlotRecipe,
4223
+ colorPickerSlotRecipe,
4224
+ sliderSlotRecipe
3732
4225
  };
3733
4226
 
3734
4227
  // src/text-styles.ts
3735
- var import_dev37 = require("@pandacss/dev");
3736
- var textStyles = (0, import_dev37.defineTextStyles)({
4228
+ var import_dev41 = require("@pandacss/dev");
4229
+ var textStyles = (0, import_dev41.defineTextStyles)({
3737
4230
  overline: { value: { fontSize: "xs", lineHeight: "xs" } },
3738
4231
  body: {
3739
4232
  sm: { value: { fontSize: "sm", lineHeight: "2xl" } },
@@ -3767,11 +4260,11 @@ var textStyles = (0, import_dev37.defineTextStyles)({
3767
4260
  });
3768
4261
 
3769
4262
  // src/tokens/index.ts
3770
- var import_dev48 = require("@pandacss/dev");
4263
+ var import_dev52 = require("@pandacss/dev");
3771
4264
 
3772
4265
  // src/tokens/borders.ts
3773
- var import_dev38 = require("@pandacss/dev");
3774
- var borders = import_dev38.defineTokens.borders({
4266
+ var import_dev42 = require("@pandacss/dev");
4267
+ var borders = import_dev42.defineTokens.borders({
3775
4268
  none: { value: "none" },
3776
4269
  sm: { value: "1px" },
3777
4270
  md: { value: "1.5px" },
@@ -3779,8 +4272,8 @@ var borders = import_dev38.defineTokens.borders({
3779
4272
  });
3780
4273
 
3781
4274
  // src/tokens/colors.ts
3782
- var import_dev39 = require("@pandacss/dev");
3783
- var colors = import_dev39.defineTokens.colors({
4275
+ var import_dev43 = require("@pandacss/dev");
4276
+ var colors = import_dev43.defineTokens.colors({
3784
4277
  currentcolor: {
3785
4278
  value: "currentcolor"
3786
4279
  },
@@ -3926,16 +4419,16 @@ var colors = import_dev39.defineTokens.colors({
3926
4419
  });
3927
4420
 
3928
4421
  // src/tokens/durations.ts
3929
- var import_dev40 = require("@pandacss/dev");
3930
- var durations = import_dev40.defineTokens.durations({
4422
+ var import_dev44 = require("@pandacss/dev");
4423
+ var durations = import_dev44.defineTokens.durations({
3931
4424
  slow: { value: "100ms" },
3932
4425
  normal: { value: "250ms" },
3933
4426
  fast: { value: "300ms" }
3934
4427
  });
3935
4428
 
3936
4429
  // src/tokens/opacity.ts
3937
- var import_dev41 = require("@pandacss/dev");
3938
- var opacity = import_dev41.defineTokens.opacity({
4430
+ var import_dev45 = require("@pandacss/dev");
4431
+ var opacity = import_dev45.defineTokens.opacity({
3939
4432
  0: { value: 0 },
3940
4433
  40: { value: 0.4 },
3941
4434
  60: { value: 0.6 },
@@ -3943,8 +4436,8 @@ var opacity = import_dev41.defineTokens.opacity({
3943
4436
  });
3944
4437
 
3945
4438
  // src/tokens/radii.ts
3946
- var import_dev42 = require("@pandacss/dev");
3947
- var radii = import_dev42.defineTokens.radii({
4439
+ var import_dev46 = require("@pandacss/dev");
4440
+ var radii = import_dev46.defineTokens.radii({
3948
4441
  none: { value: "0" },
3949
4442
  xs: { value: "0.125rem" },
3950
4443
  sm: { value: "0.25rem" },
@@ -3955,8 +4448,8 @@ var radii = import_dev42.defineTokens.radii({
3955
4448
  });
3956
4449
 
3957
4450
  // src/tokens/shadows.ts
3958
- var import_dev43 = require("@pandacss/dev");
3959
- var shadows = import_dev43.defineTokens.shadows({
4451
+ var import_dev47 = require("@pandacss/dev");
4452
+ var shadows = import_dev47.defineTokens.shadows({
3960
4453
  xs: {
3961
4454
  value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
3962
4455
  },
@@ -3996,8 +4489,8 @@ var shadows = import_dev43.defineTokens.shadows({
3996
4489
  });
3997
4490
 
3998
4491
  // src/tokens/sizes.ts
3999
- var import_dev44 = require("@pandacss/dev");
4000
- var sizes = import_dev44.defineTokens.sizes({
4492
+ var import_dev48 = require("@pandacss/dev");
4493
+ var sizes = import_dev48.defineTokens.sizes({
4001
4494
  0: { value: "0" },
4002
4495
  0.25: { value: "0.0625rem" },
4003
4496
  0.5: { value: "0.125rem" },
@@ -4026,8 +4519,8 @@ var sizes = import_dev44.defineTokens.sizes({
4026
4519
  });
4027
4520
 
4028
4521
  // src/tokens/spacing.ts
4029
- var import_dev45 = require("@pandacss/dev");
4030
- var spacing = import_dev45.defineTokens.spacing({
4522
+ var import_dev49 = require("@pandacss/dev");
4523
+ var spacing = import_dev49.defineTokens.spacing({
4031
4524
  0: { value: "0" },
4032
4525
  0.5: { value: "0.125rem" },
4033
4526
  1: { value: "0.25rem" },
@@ -4048,8 +4541,8 @@ var spacing = import_dev45.defineTokens.spacing({
4048
4541
  });
4049
4542
 
4050
4543
  // src/tokens/z-index.ts
4051
- var import_dev46 = require("@pandacss/dev");
4052
- var zIndex = import_dev46.defineTokens.zIndex({
4544
+ var import_dev50 = require("@pandacss/dev");
4545
+ var zIndex = import_dev50.defineTokens.zIndex({
4053
4546
  hide: { value: -1 },
4054
4547
  base: { value: 0 },
4055
4548
  docked: { value: 10 },
@@ -4061,8 +4554,8 @@ var zIndex = import_dev46.defineTokens.zIndex({
4061
4554
  });
4062
4555
 
4063
4556
  // src/tokens/typography.ts
4064
- var import_dev47 = require("@pandacss/dev");
4065
- var fonts = import_dev47.defineTokens.fonts({
4557
+ var import_dev51 = require("@pandacss/dev");
4558
+ var fonts = import_dev51.defineTokens.fonts({
4066
4559
  body: {
4067
4560
  value: '"Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
4068
4561
  },
@@ -4070,7 +4563,7 @@ var fonts = import_dev47.defineTokens.fonts({
4070
4563
  value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
4071
4564
  }
4072
4565
  });
4073
- var fontSizes = import_dev47.defineTokens.fontSizes({
4566
+ var fontSizes = import_dev51.defineTokens.fontSizes({
4074
4567
  xs: { value: "0.625rem" },
4075
4568
  sm: { value: "0.75rem" },
4076
4569
  md: { value: "0.875rem" },
@@ -4078,12 +4571,12 @@ var fontSizes = import_dev47.defineTokens.fontSizes({
4078
4571
  xl: { value: "1.25rem" },
4079
4572
  "2xl": { value: "1.5rem" }
4080
4573
  });
4081
- var fontWeights = import_dev47.defineTokens.fontWeights({
4574
+ var fontWeights = import_dev51.defineTokens.fontWeights({
4082
4575
  regular: { value: "400" },
4083
4576
  semiBold: { value: "600" },
4084
4577
  bold: { value: "800" }
4085
4578
  });
4086
- var lineHeights = import_dev47.defineTokens.lineHeights({
4579
+ var lineHeights = import_dev51.defineTokens.lineHeights({
4087
4580
  xs: { value: 1.2 },
4088
4581
  sm: { value: 1.34 },
4089
4582
  md: { value: 1.4 },
@@ -4092,7 +4585,7 @@ var lineHeights = import_dev47.defineTokens.lineHeights({
4092
4585
  "2xl": { value: 1.67 },
4093
4586
  "3xl": { value: 1.71 }
4094
4587
  });
4095
- var letterSpacings = import_dev47.defineTokens.letterSpacings({
4588
+ var letterSpacings = import_dev51.defineTokens.letterSpacings({
4096
4589
  tighter: { value: "-0.05em" },
4097
4590
  tight: { value: "-0.025em" },
4098
4591
  normal: { value: "0" },
@@ -4102,7 +4595,7 @@ var letterSpacings = import_dev47.defineTokens.letterSpacings({
4102
4595
  });
4103
4596
 
4104
4597
  // src/tokens/index.ts
4105
- var tokens = (0, import_dev48.defineTokens)({
4598
+ var tokens = (0, import_dev52.defineTokens)({
4106
4599
  borders,
4107
4600
  colors,
4108
4601
  durations,
@@ -4120,7 +4613,7 @@ var tokens = (0, import_dev48.defineTokens)({
4120
4613
  });
4121
4614
 
4122
4615
  // src/index.ts
4123
- var preset = (0, import_dev49.definePreset)({
4616
+ var preset = (0, import_dev53.definePreset)({
4124
4617
  theme: {
4125
4618
  extend: {
4126
4619
  breakpoints,