@fileverse/ui 4.1.7-patch-34 → 4.1.7-patch-35
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.css +89 -198
- package/dist/index.es.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -543,7 +543,7 @@ video {
|
|
|
543
543
|
|
|
544
544
|
/* Border */
|
|
545
545
|
--color-border-default: 195, 10%, 92%, 1; /* Gray-200 */
|
|
546
|
-
--color-border-hover:
|
|
546
|
+
--color-border-hover: 203, 10%, 76%, 1;
|
|
547
547
|
--color-border-light: 0, 0%, 100%, 1; /* White */
|
|
548
548
|
--color-border-active: 0, 0%, 0%, 1; /* Black */
|
|
549
549
|
--color-border-focused: 260, 100%, 52%, 1; /* Blue-700 */
|
|
@@ -2693,265 +2693,289 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2693
2693
|
margin-left: 0;
|
|
2694
2694
|
}
|
|
2695
2695
|
|
|
2696
|
+
.space-sm {
|
|
2697
|
+
padding: 12px !important;
|
|
2698
|
+
}
|
|
2699
|
+
.space-y-sm {
|
|
2700
|
+
padding-top: 12px !important;
|
|
2701
|
+
padding-bottom: 12px !important;
|
|
2702
|
+
}
|
|
2703
|
+
.space-x-sm {
|
|
2704
|
+
padding-left: 12px !important;
|
|
2705
|
+
padding-right: 12px !important;
|
|
2706
|
+
}
|
|
2707
|
+
.top-space-sm {
|
|
2708
|
+
padding-top: 12px !important;
|
|
2709
|
+
}
|
|
2710
|
+
.bottom-space-sm {
|
|
2711
|
+
padding-bottom: 12px !important;
|
|
2712
|
+
}
|
|
2713
|
+
.left-space-sm {
|
|
2714
|
+
padding-left: 12px !important;
|
|
2715
|
+
}
|
|
2716
|
+
.right-space-sm {
|
|
2717
|
+
padding-right: 12px !important;
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
|
|
2721
|
+
.space-xsm {
|
|
2722
|
+
padding: 8px !important;
|
|
2723
|
+
}
|
|
2724
|
+
.space-y-xsm {
|
|
2725
|
+
padding-top: 8px !important;
|
|
2726
|
+
padding-bottom: 8px !important;
|
|
2727
|
+
}
|
|
2728
|
+
.space-x-xsm {
|
|
2729
|
+
padding-left: 8px !important;
|
|
2730
|
+
padding-right: 8px !important;
|
|
2731
|
+
}
|
|
2732
|
+
.top-space-xsm {
|
|
2733
|
+
padding-top: 8px !important;
|
|
2734
|
+
}
|
|
2735
|
+
.bottom-space-xsm {
|
|
2736
|
+
padding-bottom: 8px !important;
|
|
2737
|
+
}
|
|
2738
|
+
.left-space-xsm {
|
|
2739
|
+
padding-left: 8px !important;
|
|
2740
|
+
}
|
|
2741
|
+
.right-space-xsm {
|
|
2742
|
+
padding-right: 8px !important;
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
.space-md {
|
|
2746
|
+
padding: 16px !important;
|
|
2747
|
+
}
|
|
2748
|
+
.space-y-md {
|
|
2749
|
+
padding-top: 16px !important;
|
|
2750
|
+
padding-bottom: 16px !important;
|
|
2751
|
+
}
|
|
2752
|
+
.space-x-md {
|
|
2753
|
+
padding-left: 16px !important;
|
|
2754
|
+
padding-right: 16px !important;
|
|
2755
|
+
}
|
|
2756
|
+
.top-space-md {
|
|
2757
|
+
padding-top: 16px !important;
|
|
2758
|
+
}
|
|
2759
|
+
.bottom-space-md {
|
|
2760
|
+
padding-bottom: 16px !important;
|
|
2761
|
+
}
|
|
2762
|
+
.left-space-md {
|
|
2763
|
+
padding-left: 16px !important;
|
|
2764
|
+
}
|
|
2765
|
+
.right-space-md {
|
|
2766
|
+
padding-right: 16px !important;
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
|
|
2770
|
+
.gap-xsm {
|
|
2771
|
+
gap: 8px !important;
|
|
2772
|
+
}
|
|
2773
|
+
.gap-2xsm {
|
|
2774
|
+
gap: 4px !important;
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.border-radius-sm {
|
|
2778
|
+
border-radius: 4px !important;
|
|
2779
|
+
}
|
|
2780
|
+
.border-width-md {
|
|
2781
|
+
border-width: 1px !important;
|
|
2782
|
+
}
|
|
2696
2783
|
.file\:text-body-sm::file-selector-button {
|
|
2697
2784
|
font-family: system-ui;
|
|
2698
2785
|
font-size: 14px;
|
|
2699
2786
|
font-weight: 400;
|
|
2700
2787
|
line-height: 20px;
|
|
2701
2788
|
}
|
|
2702
|
-
|
|
2703
2789
|
.placeholder\:color-text-disabled::-moz-placeholder {
|
|
2704
2790
|
color: hsl(var(--color-text-disabled));
|
|
2705
2791
|
}
|
|
2706
|
-
|
|
2707
2792
|
.placeholder\:color-text-disabled::placeholder {
|
|
2708
2793
|
color: hsl(var(--color-text-disabled));
|
|
2709
2794
|
}
|
|
2710
|
-
|
|
2711
2795
|
.checked\:color-text-inverse:checked {
|
|
2712
2796
|
color: hsl(var(--color-text-inverse));
|
|
2713
2797
|
}
|
|
2714
|
-
|
|
2715
2798
|
.checked\:color-bg-default-inverse:checked {
|
|
2716
2799
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
2717
2800
|
}
|
|
2718
|
-
|
|
2719
2801
|
.hover\:color-text-inverse:hover {
|
|
2720
2802
|
color: hsl(var(--color-text-inverse));
|
|
2721
2803
|
}
|
|
2722
|
-
|
|
2723
2804
|
.hover\:\!color-bg-default:hover {
|
|
2724
2805
|
background-color: hsl(var(--color-bg-default)) !important;
|
|
2725
2806
|
}
|
|
2726
|
-
|
|
2727
2807
|
.hover\:\!color-bg-default-hover:hover {
|
|
2728
2808
|
background-color: hsl(var(--color-bg-default-hover)) !important;
|
|
2729
2809
|
}
|
|
2730
|
-
|
|
2731
2810
|
.hover\:color-bg-default-hover:hover {
|
|
2732
2811
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2733
2812
|
}
|
|
2734
|
-
|
|
2735
2813
|
.hover\:color-bg-secondary-hover:hover {
|
|
2736
2814
|
background-color: hsl(var(--color-bg-secondary-hover));
|
|
2737
2815
|
}
|
|
2738
|
-
|
|
2739
2816
|
.hover\:\!color-bg-brand:hover {
|
|
2740
2817
|
background-color: hsl(var(--color-bg-brand)) !important;
|
|
2741
2818
|
}
|
|
2742
|
-
|
|
2743
2819
|
.hover\:color-bg-brand-hover:hover {
|
|
2744
2820
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2745
2821
|
}
|
|
2746
|
-
|
|
2747
2822
|
.hover\:color-button-default-hover:hover {
|
|
2748
2823
|
background-color: hsl(var(--color-button-default-hover));
|
|
2749
2824
|
}
|
|
2750
|
-
|
|
2751
2825
|
.hover\:color-button-secondary-hover:hover {
|
|
2752
2826
|
background-color: hsl(var(--color-button-secondary-hover));
|
|
2753
2827
|
}
|
|
2754
|
-
|
|
2755
2828
|
.hover\:color-button-danger-hover:hover {
|
|
2756
2829
|
background-color: hsl(var(--color-button-danger-hover));
|
|
2757
2830
|
}
|
|
2758
|
-
|
|
2759
2831
|
.hover\:\!color-button-floating-hover:hover {
|
|
2760
2832
|
background-color: hsl(var(--color-button-floating-hover)) !important;
|
|
2761
2833
|
}
|
|
2762
|
-
|
|
2763
2834
|
.hover\:color-border-hover:hover {
|
|
2764
2835
|
border-color: hsl(var(--color-border-hover));
|
|
2765
2836
|
}
|
|
2766
|
-
|
|
2767
2837
|
.focus\:color-bg-brand:focus {
|
|
2768
2838
|
background-color: hsl(var(--color-bg-brand));
|
|
2769
2839
|
}
|
|
2770
|
-
|
|
2771
2840
|
.focus-visible\:color-border-hover:focus-visible {
|
|
2772
2841
|
border-color: hsl(var(--color-border-hover));
|
|
2773
2842
|
}
|
|
2774
|
-
|
|
2775
2843
|
.disabled\:color-text-disabled:disabled {
|
|
2776
2844
|
color: hsl(var(--color-text-disabled));
|
|
2777
2845
|
}
|
|
2778
|
-
|
|
2779
2846
|
.disabled\:color-bg-disabled:disabled {
|
|
2780
2847
|
background-color: hsl(var(--color-bg-disabled));
|
|
2781
2848
|
}
|
|
2782
|
-
|
|
2783
2849
|
.disabled\:\!color-button-disabled:disabled {
|
|
2784
2850
|
background-color: hsl(var(--color-button-disabled)) !important;
|
|
2785
2851
|
border-color: hsl(var(--color-button-disabled)) !important;
|
|
2786
2852
|
color: hsl(var(--color-text-disabled)) !important;
|
|
2787
2853
|
}
|
|
2788
|
-
|
|
2789
2854
|
.disabled\:color-button-disabled:disabled {
|
|
2790
2855
|
background-color: hsl(var(--color-button-disabled));
|
|
2791
2856
|
border-color: hsl(var(--color-button-disabled));
|
|
2792
2857
|
color: hsl(var(--color-text-disabled));
|
|
2793
2858
|
}
|
|
2794
|
-
|
|
2795
2859
|
.disabled\:color-border-disabled:disabled {
|
|
2796
2860
|
border-color: hsl(var(--color-border-disabled));
|
|
2797
2861
|
}
|
|
2798
|
-
|
|
2799
2862
|
.group.secondary .group-\[\.secondary\]\:color-text-default {
|
|
2800
2863
|
color: hsl(var(--color-text-default));
|
|
2801
2864
|
}
|
|
2802
|
-
|
|
2803
2865
|
.group.danger .group-\[\.danger\]\:color-text-danger {
|
|
2804
2866
|
color: hsl(var(--color-text-danger));
|
|
2805
2867
|
}
|
|
2806
|
-
|
|
2807
2868
|
.group.success .group-\[\.success\]\:color-text-success {
|
|
2808
2869
|
color: hsl(var(--color-text-success));
|
|
2809
2870
|
}
|
|
2810
|
-
|
|
2811
2871
|
.group.default .group-\[\.default\]\:color-text-inverse {
|
|
2812
2872
|
color: hsl(var(--color-text-inverse));
|
|
2813
2873
|
}
|
|
2814
|
-
|
|
2815
2874
|
.group.secondary .group-\[\.secondary\]\:color-bg-secondary {
|
|
2816
2875
|
background-color: hsl(var(--color-bg-secondary));
|
|
2817
2876
|
}
|
|
2818
|
-
|
|
2819
2877
|
.group.danger .group-\[\.danger\]\:color-bg-danger-light {
|
|
2820
2878
|
background-color: hsl(var(--color-bg-danger-light));
|
|
2821
2879
|
}
|
|
2822
|
-
|
|
2823
2880
|
.group.success .group-\[\.success\]\:color-bg-success-light {
|
|
2824
2881
|
background-color: hsl(var(--color-bg-success-light));
|
|
2825
2882
|
}
|
|
2826
|
-
|
|
2827
2883
|
.group.default .group-\[\.default\]\:color-bg-default-inverse {
|
|
2828
2884
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
2829
2885
|
}
|
|
2830
|
-
|
|
2831
2886
|
.group.default .group-\[\.default\]\:color-border-default {
|
|
2832
2887
|
border-color: hsl(var(--color-border-default));
|
|
2833
2888
|
}
|
|
2834
|
-
|
|
2835
2889
|
.group.secondary .group-\[\.secondary\]\:color-border-default {
|
|
2836
2890
|
border-color: hsl(var(--color-border-default));
|
|
2837
2891
|
}
|
|
2838
|
-
|
|
2839
2892
|
.group.success .group-\[\.success\]\:color-border-default {
|
|
2840
2893
|
border-color: hsl(var(--color-border-default));
|
|
2841
2894
|
}
|
|
2842
|
-
|
|
2843
2895
|
.group.secondary .group-\[\.secondary\]\:color-border-hover {
|
|
2844
2896
|
border-color: hsl(var(--color-border-hover));
|
|
2845
2897
|
}
|
|
2846
|
-
|
|
2847
2898
|
.group.success .group-\[\.success\]\:color-border-hover {
|
|
2848
2899
|
border-color: hsl(var(--color-border-hover));
|
|
2849
2900
|
}
|
|
2850
|
-
|
|
2851
2901
|
.group.danger .group-\[\.danger\]\:color-border-danger {
|
|
2852
2902
|
border-color: hsl(var(--color-border-danger));
|
|
2853
2903
|
}
|
|
2854
|
-
|
|
2855
2904
|
.group.secondary .group-\[\.secondary\]\:hover\:color-text-default:hover {
|
|
2856
2905
|
color: hsl(var(--color-text-default));
|
|
2857
2906
|
}
|
|
2858
|
-
|
|
2859
2907
|
.group.danger .group-\[\.danger\]\:hover\:color-text-danger:hover {
|
|
2860
2908
|
color: hsl(var(--color-text-danger));
|
|
2861
2909
|
}
|
|
2862
|
-
|
|
2863
2910
|
.group.success .group-\[\.success\]\:hover\:color-text-success:hover {
|
|
2864
2911
|
color: hsl(var(--color-text-success));
|
|
2865
2912
|
}
|
|
2866
|
-
|
|
2867
2913
|
.group.default .group-\[\.default\]\:hover\:color-text-inverse:hover {
|
|
2868
2914
|
color: hsl(var(--color-text-inverse));
|
|
2869
2915
|
}
|
|
2870
|
-
|
|
2871
2916
|
.group.secondary .group-\[\.secondary\]\:hover\:color-bg-secondary:hover {
|
|
2872
2917
|
background-color: hsl(var(--color-bg-secondary));
|
|
2873
2918
|
}
|
|
2874
|
-
|
|
2875
2919
|
.group.danger .group-\[\.danger\]\:hover\:color-bg-danger-light:hover {
|
|
2876
2920
|
background-color: hsl(var(--color-bg-danger-light));
|
|
2877
2921
|
}
|
|
2878
|
-
|
|
2879
2922
|
.group.success .group-\[\.success\]\:hover\:color-bg-success-light:hover {
|
|
2880
2923
|
background-color: hsl(var(--color-bg-success-light));
|
|
2881
2924
|
}
|
|
2882
|
-
|
|
2883
2925
|
.group.default .group-\[\.default\]\:hover\:color-bg-default-inverse:hover {
|
|
2884
2926
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
2885
2927
|
}
|
|
2886
|
-
|
|
2887
2928
|
.aria-selected\:color-text-default[aria-selected="true"] {
|
|
2888
2929
|
color: hsl(var(--color-text-default));
|
|
2889
2930
|
}
|
|
2890
|
-
|
|
2891
2931
|
.aria-selected\:color-bg-default-selected[aria-selected="true"] {
|
|
2892
2932
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2893
2933
|
}
|
|
2894
|
-
|
|
2895
2934
|
.aria-selected\:color-bg-secondary[aria-selected="true"] {
|
|
2896
2935
|
background-color: hsl(var(--color-bg-secondary));
|
|
2897
2936
|
}
|
|
2898
|
-
|
|
2899
2937
|
.data-\[highlighted\]\:color-text-default[data-highlighted] {
|
|
2900
2938
|
color: hsl(var(--color-text-default));
|
|
2901
2939
|
}
|
|
2902
|
-
|
|
2903
2940
|
.data-\[state\=active\]\:color-text-default[data-state="active"] {
|
|
2904
2941
|
color: hsl(var(--color-text-default));
|
|
2905
2942
|
}
|
|
2906
|
-
|
|
2907
2943
|
.data-\[state\=open\]\:color-text-default[data-state="open"] {
|
|
2908
2944
|
color: hsl(var(--color-text-default));
|
|
2909
2945
|
}
|
|
2910
|
-
|
|
2911
2946
|
.data-\[disabled\]\:color-text-disabled[data-disabled] {
|
|
2912
2947
|
color: hsl(var(--color-text-disabled));
|
|
2913
2948
|
}
|
|
2914
|
-
|
|
2915
2949
|
.data-\[state\=unchecked\]\:color-bg-default-hover[data-state="unchecked"] {
|
|
2916
2950
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2917
2951
|
}
|
|
2918
|
-
|
|
2919
2952
|
.data-\[highlighted\]\:color-bg-default-selected[data-highlighted] {
|
|
2920
2953
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2921
2954
|
}
|
|
2922
|
-
|
|
2923
2955
|
.data-\[state\=open\]\:color-bg-default-selected[data-state="open"] {
|
|
2924
2956
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2925
2957
|
}
|
|
2926
|
-
|
|
2927
2958
|
.data-\[state\=selected\]\:color-bg-default-selected[data-state="selected"] {
|
|
2928
2959
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2929
2960
|
}
|
|
2930
|
-
|
|
2931
2961
|
.data-\[state\=checked\]\:color-bg-brand-hover[data-state="checked"] {
|
|
2932
2962
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2933
2963
|
}
|
|
2934
|
-
|
|
2935
2964
|
.data-\[state\=active\]\:color-border-active[data-state="active"] {
|
|
2936
2965
|
border-color: hsl(var(--color-border-active));
|
|
2937
2966
|
}
|
|
2938
|
-
|
|
2939
2967
|
.data-\[state\=unchecked\]\:hover\:enabled\:color-bg-default-hover:enabled:hover[data-state="unchecked"] {
|
|
2940
2968
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2941
2969
|
}
|
|
2942
|
-
|
|
2943
2970
|
.data-\[state\=checked\]\:hover\:enabled\:color-bg-brand-hover:enabled:hover[data-state="checked"] {
|
|
2944
2971
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2945
2972
|
}
|
|
2946
|
-
|
|
2947
2973
|
.dark\:color-bg-disabled:is(.dark *) {
|
|
2948
2974
|
background-color: hsl(var(--color-bg-disabled));
|
|
2949
2975
|
}
|
|
2950
|
-
|
|
2951
2976
|
.dark\:data-\[state\=active\]\:color-border-light[data-state="active"]:is(.dark *) {
|
|
2952
2977
|
border-color: hsl(var(--color-border-light));
|
|
2953
2978
|
}
|
|
2954
|
-
|
|
2955
2979
|
@media (min-width: 1024px) {
|
|
2956
2980
|
|
|
2957
2981
|
.lg\:\!text-heading-2xlg {
|
|
@@ -2961,263 +2985,206 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2961
2985
|
line-height: 40px !important;
|
|
2962
2986
|
}
|
|
2963
2987
|
}
|
|
2964
|
-
|
|
2965
2988
|
@media (min-width: 1280px) {
|
|
2966
2989
|
|
|
2967
2990
|
.xl\:hover\:\!color-bg-brand-hover:hover {
|
|
2968
2991
|
background-color: hsl(var(--color-bg-brand-hover)) !important;
|
|
2969
2992
|
}
|
|
2970
2993
|
}
|
|
2971
|
-
|
|
2972
2994
|
.\[\&\>svg\]\:color-text-default>svg {
|
|
2973
2995
|
color: hsl(var(--color-text-default));
|
|
2974
2996
|
}
|
|
2975
|
-
|
|
2976
2997
|
.\[\&\>svg\]\:color-text-danger>svg {
|
|
2977
2998
|
color: hsl(var(--color-text-danger));
|
|
2978
2999
|
}
|
|
2979
|
-
|
|
2980
3000
|
.\[\&_\[cmdk-group-heading\]\]\:text-helper-text-sm [cmdk-group-heading] {
|
|
2981
3001
|
font-family: system-ui;
|
|
2982
3002
|
font-size: 12px;
|
|
2983
3003
|
font-weight: 400;
|
|
2984
3004
|
line-height: 16px;
|
|
2985
3005
|
}
|
|
2986
|
-
|
|
2987
3006
|
.\[\&_\[cmdk-group-heading\]\]\:color-text-disabled [cmdk-group-heading] {
|
|
2988
3007
|
color: hsl(var(--color-text-disabled));
|
|
2989
3008
|
}
|
|
2990
|
-
|
|
2991
3009
|
.\[\&_tr\]\:color-border-default tr {
|
|
2992
3010
|
border-color: hsl(var(--color-border-default));
|
|
2993
3011
|
}
|
|
2994
|
-
|
|
2995
3012
|
.data-\[state\=unchecked\]\:toggle-default[data-state="unchecked"] {
|
|
2996
3013
|
background-color: hsl(var(--color-bg-disabled));
|
|
2997
3014
|
}
|
|
2998
|
-
|
|
2999
3015
|
.data-\[state\=checked\]\:toggle-active[data-state="checked"] {
|
|
3000
3016
|
background-color: hsl(var(--color-bg-brand));
|
|
3001
3017
|
}
|
|
3002
|
-
|
|
3003
3018
|
.data-\[state\=checked\]\:disabled\:toggle-default:disabled[data-state="checked"] {
|
|
3004
3019
|
background-color: hsl(var(--color-bg-disabled));
|
|
3005
3020
|
}
|
|
3006
|
-
|
|
3007
3021
|
.file\:border-0::file-selector-button {
|
|
3008
3022
|
border-width: 0px;
|
|
3009
3023
|
}
|
|
3010
|
-
|
|
3011
3024
|
.file\:bg-transparent::file-selector-button {
|
|
3012
3025
|
background-color: transparent;
|
|
3013
3026
|
}
|
|
3014
|
-
|
|
3015
3027
|
.checked\:border-0:checked {
|
|
3016
3028
|
border-width: 0px;
|
|
3017
3029
|
}
|
|
3018
|
-
|
|
3019
3030
|
.focus-within\:relative:focus-within {
|
|
3020
3031
|
position: relative;
|
|
3021
3032
|
}
|
|
3022
|
-
|
|
3023
3033
|
.focus-within\:z-20:focus-within {
|
|
3024
3034
|
z-index: 20;
|
|
3025
3035
|
}
|
|
3026
|
-
|
|
3027
3036
|
.hover\:cursor-pointer:hover {
|
|
3028
3037
|
cursor: pointer;
|
|
3029
3038
|
}
|
|
3030
|
-
|
|
3031
3039
|
.hover\:\!border-transparent:hover {
|
|
3032
3040
|
border-color: transparent !important;
|
|
3033
3041
|
}
|
|
3034
|
-
|
|
3035
3042
|
.hover\:bg-inherit:hover {
|
|
3036
3043
|
background-color: inherit;
|
|
3037
3044
|
}
|
|
3038
|
-
|
|
3039
3045
|
.hover\:bg-transparent:hover {
|
|
3040
3046
|
background-color: transparent;
|
|
3041
3047
|
}
|
|
3042
|
-
|
|
3043
3048
|
.hover\:opacity-90:hover {
|
|
3044
3049
|
opacity: 0.9;
|
|
3045
3050
|
}
|
|
3046
|
-
|
|
3047
3051
|
.hover\:brightness-95:hover {
|
|
3048
3052
|
--tw-brightness: brightness(.95);
|
|
3049
3053
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
3050
3054
|
}
|
|
3051
|
-
|
|
3052
3055
|
.focus\:opacity-100:focus {
|
|
3053
3056
|
opacity: 1;
|
|
3054
3057
|
}
|
|
3055
|
-
|
|
3056
3058
|
.focus\:shadow-none:focus {
|
|
3057
3059
|
--tw-shadow: 0 0 #0000;
|
|
3058
3060
|
--tw-shadow-colored: 0 0 #0000;
|
|
3059
3061
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3060
3062
|
}
|
|
3061
|
-
|
|
3062
3063
|
.focus\:outline-none:focus {
|
|
3063
3064
|
outline: 2px solid transparent;
|
|
3064
3065
|
outline-offset: 2px;
|
|
3065
3066
|
}
|
|
3066
|
-
|
|
3067
3067
|
.focus\:ring-0:focus {
|
|
3068
3068
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3069
3069
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3070
3070
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3071
3071
|
}
|
|
3072
|
-
|
|
3073
3072
|
.focus\:ring-2:focus {
|
|
3074
3073
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3075
3074
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3076
3075
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3077
3076
|
}
|
|
3078
|
-
|
|
3079
3077
|
.focus\:ring-focused:focus {
|
|
3080
3078
|
--tw-ring-color: hsl(var(--focused));
|
|
3081
3079
|
}
|
|
3082
|
-
|
|
3083
3080
|
.focus\:ring-offset-2:focus {
|
|
3084
3081
|
--tw-ring-offset-width: 2px;
|
|
3085
3082
|
}
|
|
3086
|
-
|
|
3087
3083
|
.focus-visible\:outline-none:focus-visible {
|
|
3088
3084
|
outline: 2px solid transparent;
|
|
3089
3085
|
outline-offset: 2px;
|
|
3090
3086
|
}
|
|
3091
|
-
|
|
3092
3087
|
.focus-visible\:ring-1:focus-visible {
|
|
3093
3088
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3094
3089
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3095
3090
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3096
3091
|
}
|
|
3097
|
-
|
|
3098
3092
|
.focus-visible\:ring-2:focus-visible {
|
|
3099
3093
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3100
3094
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3101
3095
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3102
3096
|
}
|
|
3103
|
-
|
|
3104
3097
|
.focus-visible\:ring-focused:focus-visible {
|
|
3105
3098
|
--tw-ring-color: hsl(var(--focused));
|
|
3106
3099
|
}
|
|
3107
|
-
|
|
3108
3100
|
.focus-visible\:ring-offset-2:focus-visible {
|
|
3109
3101
|
--tw-ring-offset-width: 2px;
|
|
3110
3102
|
}
|
|
3111
|
-
|
|
3112
3103
|
.focus-visible\:ring-offset-white:focus-visible {
|
|
3113
3104
|
--tw-ring-offset-color: #fff;
|
|
3114
3105
|
}
|
|
3115
|
-
|
|
3116
3106
|
.disabled\:pointer-events-none:disabled {
|
|
3117
3107
|
pointer-events: none;
|
|
3118
3108
|
}
|
|
3119
|
-
|
|
3120
3109
|
.disabled\:cursor-not-allowed:disabled {
|
|
3121
3110
|
cursor: not-allowed;
|
|
3122
3111
|
}
|
|
3123
|
-
|
|
3124
3112
|
.disabled\:opacity-50:disabled {
|
|
3125
3113
|
opacity: 0.5;
|
|
3126
3114
|
}
|
|
3127
|
-
|
|
3128
3115
|
.group:hover .group-hover\:visible {
|
|
3129
3116
|
visibility: visible;
|
|
3130
3117
|
}
|
|
3131
|
-
|
|
3132
3118
|
.group:hover .group-hover\:opacity-100 {
|
|
3133
3119
|
opacity: 1;
|
|
3134
3120
|
}
|
|
3135
|
-
|
|
3136
3121
|
.group:hover .group-hover\:brightness-95 {
|
|
3137
3122
|
--tw-brightness: brightness(.95);
|
|
3138
3123
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
3139
3124
|
}
|
|
3140
|
-
|
|
3141
3125
|
.peer:checked ~ .peer-checked\:block {
|
|
3142
3126
|
display: block;
|
|
3143
3127
|
}
|
|
3144
|
-
|
|
3145
3128
|
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
3146
3129
|
cursor: not-allowed;
|
|
3147
3130
|
}
|
|
3148
|
-
|
|
3149
3131
|
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
3150
3132
|
opacity: 0.7;
|
|
3151
3133
|
}
|
|
3152
|
-
|
|
3153
3134
|
.aria-selected\:opacity-100[aria-selected="true"] {
|
|
3154
3135
|
opacity: 1;
|
|
3155
3136
|
}
|
|
3156
|
-
|
|
3157
3137
|
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
3158
3138
|
pointer-events: none;
|
|
3159
3139
|
}
|
|
3160
|
-
|
|
3161
3140
|
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
|
|
3162
3141
|
--tw-translate-y: 0.25rem;
|
|
3163
3142
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3164
3143
|
}
|
|
3165
|
-
|
|
3166
3144
|
.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
|
|
3167
3145
|
--tw-translate-x: -0.25rem;
|
|
3168
3146
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3169
3147
|
}
|
|
3170
|
-
|
|
3171
3148
|
.data-\[side\=right\]\:translate-x-1[data-side="right"] {
|
|
3172
3149
|
--tw-translate-x: 0.25rem;
|
|
3173
3150
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3174
3151
|
}
|
|
3175
|
-
|
|
3176
3152
|
.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
|
|
3177
3153
|
--tw-translate-y: -0.25rem;
|
|
3178
3154
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3179
3155
|
}
|
|
3180
|
-
|
|
3181
3156
|
.data-\[state\=checked\]\:translate-x-5[data-state="checked"] {
|
|
3182
3157
|
--tw-translate-x: 1.25rem;
|
|
3183
3158
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3184
3159
|
}
|
|
3185
|
-
|
|
3186
3160
|
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
|
|
3187
3161
|
--tw-translate-x: 0px;
|
|
3188
3162
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3189
3163
|
}
|
|
3190
|
-
|
|
3191
3164
|
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"] {
|
|
3192
3165
|
--tw-translate-x: 0px;
|
|
3193
3166
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3194
3167
|
}
|
|
3195
|
-
|
|
3196
3168
|
.data-\[swipe\=cancel\]\:translate-y-0[data-swipe="cancel"] {
|
|
3197
3169
|
--tw-translate-y: 0px;
|
|
3198
3170
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3199
3171
|
}
|
|
3200
|
-
|
|
3201
3172
|
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"] {
|
|
3202
3173
|
--tw-translate-x: var(--radix-toast-swipe-end-x);
|
|
3203
3174
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3204
3175
|
}
|
|
3205
|
-
|
|
3206
3176
|
.data-\[swipe\=end\]\:translate-y-\[var\(--radix-toast-swipe-end-y\)\][data-swipe="end"] {
|
|
3207
3177
|
--tw-translate-y: var(--radix-toast-swipe-end-y);
|
|
3208
3178
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3209
3179
|
}
|
|
3210
|
-
|
|
3211
3180
|
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"] {
|
|
3212
3181
|
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
|
3213
3182
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3214
3183
|
}
|
|
3215
|
-
|
|
3216
3184
|
.data-\[swipe\=move\]\:translate-y-\[var\(--radix-toast-swipe-move-y\)\][data-swipe="move"] {
|
|
3217
3185
|
--tw-translate-y: var(--radix-toast-swipe-move-y);
|
|
3218
3186
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3219
3187
|
}
|
|
3220
|
-
|
|
3221
3188
|
@keyframes accordion-up {
|
|
3222
3189
|
|
|
3223
3190
|
from {
|
|
@@ -3228,11 +3195,9 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3228
3195
|
height: 0;
|
|
3229
3196
|
}
|
|
3230
3197
|
}
|
|
3231
|
-
|
|
3232
3198
|
.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
|
|
3233
3199
|
animation: accordion-up 0.2s ease-out;
|
|
3234
3200
|
}
|
|
3235
|
-
|
|
3236
3201
|
@keyframes accordion-down {
|
|
3237
3202
|
|
|
3238
3203
|
from {
|
|
@@ -3243,31 +3208,24 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3243
3208
|
height: var(--radix-accordion-content-height);
|
|
3244
3209
|
}
|
|
3245
3210
|
}
|
|
3246
|
-
|
|
3247
3211
|
.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
|
|
3248
3212
|
animation: accordion-down 0.2s ease-out;
|
|
3249
3213
|
}
|
|
3250
|
-
|
|
3251
3214
|
.data-\[state\=active\]\:border-b-2[data-state="active"] {
|
|
3252
3215
|
border-bottom-width: 2px;
|
|
3253
3216
|
}
|
|
3254
|
-
|
|
3255
3217
|
.data-\[state\=inactive\]\:border-transparent[data-state="inactive"] {
|
|
3256
3218
|
border-color: transparent;
|
|
3257
3219
|
}
|
|
3258
|
-
|
|
3259
3220
|
.data-\[swipe\=move\]\:transition-none[data-swipe="move"] {
|
|
3260
3221
|
transition-property: none;
|
|
3261
3222
|
}
|
|
3262
|
-
|
|
3263
3223
|
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
|
|
3264
3224
|
transition-duration: 300ms;
|
|
3265
3225
|
}
|
|
3266
|
-
|
|
3267
3226
|
.data-\[state\=open\]\:duration-500[data-state="open"] {
|
|
3268
3227
|
transition-duration: 500ms;
|
|
3269
3228
|
}
|
|
3270
|
-
|
|
3271
3229
|
.data-\[state\=open\]\:animate-in[data-state="open"] {
|
|
3272
3230
|
animation-name: enter;
|
|
3273
3231
|
animation-duration: 150ms;
|
|
@@ -3277,7 +3235,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3277
3235
|
--tw-enter-translate-x: initial;
|
|
3278
3236
|
--tw-enter-translate-y: initial;
|
|
3279
3237
|
}
|
|
3280
|
-
|
|
3281
3238
|
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
|
|
3282
3239
|
animation-name: exit;
|
|
3283
3240
|
animation-duration: 150ms;
|
|
@@ -3287,7 +3244,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3287
3244
|
--tw-exit-translate-x: initial;
|
|
3288
3245
|
--tw-exit-translate-y: initial;
|
|
3289
3246
|
}
|
|
3290
|
-
|
|
3291
3247
|
.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
|
|
3292
3248
|
animation-name: exit;
|
|
3293
3249
|
animation-duration: 150ms;
|
|
@@ -3297,142 +3253,108 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3297
3253
|
--tw-exit-translate-x: initial;
|
|
3298
3254
|
--tw-exit-translate-y: initial;
|
|
3299
3255
|
}
|
|
3300
|
-
|
|
3301
3256
|
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
|
|
3302
3257
|
--tw-exit-opacity: 0;
|
|
3303
3258
|
}
|
|
3304
|
-
|
|
3305
3259
|
.data-\[state\=closed\]\:fade-out-80[data-state="closed"] {
|
|
3306
3260
|
--tw-exit-opacity: 0.8;
|
|
3307
3261
|
}
|
|
3308
|
-
|
|
3309
3262
|
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
|
|
3310
3263
|
--tw-enter-opacity: 0;
|
|
3311
3264
|
}
|
|
3312
|
-
|
|
3313
3265
|
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
|
|
3314
3266
|
--tw-exit-scale: .95;
|
|
3315
3267
|
}
|
|
3316
|
-
|
|
3317
3268
|
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
|
|
3318
3269
|
--tw-enter-scale: .95;
|
|
3319
3270
|
}
|
|
3320
|
-
|
|
3321
3271
|
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
|
|
3322
3272
|
--tw-enter-translate-y: -0.5rem;
|
|
3323
3273
|
}
|
|
3324
|
-
|
|
3325
3274
|
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
|
|
3326
3275
|
--tw-enter-translate-x: 0.5rem;
|
|
3327
3276
|
}
|
|
3328
|
-
|
|
3329
3277
|
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
|
|
3330
3278
|
--tw-enter-translate-x: -0.5rem;
|
|
3331
3279
|
}
|
|
3332
|
-
|
|
3333
3280
|
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
|
|
3334
3281
|
--tw-enter-translate-y: 0.5rem;
|
|
3335
3282
|
}
|
|
3336
|
-
|
|
3337
3283
|
.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
|
|
3338
3284
|
--tw-exit-translate-y: 100%;
|
|
3339
3285
|
}
|
|
3340
|
-
|
|
3341
3286
|
.data-\[state\=closed\]\:slide-out-to-bottom-full[data-state="closed"] {
|
|
3342
3287
|
--tw-exit-translate-y: 100%;
|
|
3343
3288
|
}
|
|
3344
|
-
|
|
3345
3289
|
.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
|
|
3346
3290
|
--tw-exit-translate-x: -100%;
|
|
3347
3291
|
}
|
|
3348
|
-
|
|
3349
3292
|
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
|
|
3350
3293
|
--tw-exit-translate-x: -50%;
|
|
3351
3294
|
}
|
|
3352
|
-
|
|
3353
3295
|
.data-\[state\=closed\]\:slide-out-to-left-full[data-state="closed"] {
|
|
3354
3296
|
--tw-exit-translate-x: -100%;
|
|
3355
3297
|
}
|
|
3356
|
-
|
|
3357
3298
|
.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
|
|
3358
3299
|
--tw-exit-translate-x: 100%;
|
|
3359
3300
|
}
|
|
3360
|
-
|
|
3361
3301
|
.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"] {
|
|
3362
3302
|
--tw-exit-translate-x: 100%;
|
|
3363
3303
|
}
|
|
3364
|
-
|
|
3365
3304
|
.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
|
|
3366
3305
|
--tw-exit-translate-y: -100%;
|
|
3367
3306
|
}
|
|
3368
|
-
|
|
3369
3307
|
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"] {
|
|
3370
3308
|
--tw-exit-translate-y: -48%;
|
|
3371
3309
|
}
|
|
3372
|
-
|
|
3373
3310
|
.data-\[state\=closed\]\:slide-out-to-top-full[data-state="closed"] {
|
|
3374
3311
|
--tw-exit-translate-y: -100%;
|
|
3375
3312
|
}
|
|
3376
|
-
|
|
3377
3313
|
.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
|
|
3378
3314
|
--tw-enter-translate-y: 100%;
|
|
3379
3315
|
}
|
|
3380
|
-
|
|
3381
3316
|
.data-\[state\=open\]\:slide-in-from-bottom-full[data-state="open"] {
|
|
3382
3317
|
--tw-enter-translate-y: 100%;
|
|
3383
3318
|
}
|
|
3384
|
-
|
|
3385
3319
|
.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
|
|
3386
3320
|
--tw-enter-translate-x: -100%;
|
|
3387
3321
|
}
|
|
3388
|
-
|
|
3389
3322
|
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
|
|
3390
3323
|
--tw-enter-translate-x: -50%;
|
|
3391
3324
|
}
|
|
3392
|
-
|
|
3393
3325
|
.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
|
|
3394
3326
|
--tw-enter-translate-x: 100%;
|
|
3395
3327
|
}
|
|
3396
|
-
|
|
3397
3328
|
.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
|
|
3398
3329
|
--tw-enter-translate-y: -100%;
|
|
3399
3330
|
}
|
|
3400
|
-
|
|
3401
3331
|
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"] {
|
|
3402
3332
|
--tw-enter-translate-y: -48%;
|
|
3403
3333
|
}
|
|
3404
|
-
|
|
3405
3334
|
.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"] {
|
|
3406
3335
|
--tw-enter-translate-y: -100%;
|
|
3407
3336
|
}
|
|
3408
|
-
|
|
3409
3337
|
.data-\[state\=closed\]\:duration-300[data-state="closed"] {
|
|
3410
3338
|
animation-duration: 300ms;
|
|
3411
3339
|
}
|
|
3412
|
-
|
|
3413
3340
|
.data-\[state\=open\]\:duration-500[data-state="open"] {
|
|
3414
3341
|
animation-duration: 500ms;
|
|
3415
3342
|
}
|
|
3416
|
-
|
|
3417
3343
|
.dark\:bg-\[\#000\]:is(.dark *) {
|
|
3418
3344
|
--tw-bg-opacity: 1;
|
|
3419
3345
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
3420
3346
|
}
|
|
3421
|
-
|
|
3422
3347
|
.dark\:stroke-black:is(.dark *) {
|
|
3423
3348
|
stroke: #000;
|
|
3424
3349
|
}
|
|
3425
|
-
|
|
3426
3350
|
.dark\:\!text-\[\#363B3F\]:is(.dark *) {
|
|
3427
3351
|
--tw-text-opacity: 1 !important;
|
|
3428
3352
|
color: rgb(54 59 63 / var(--tw-text-opacity, 1)) !important;
|
|
3429
3353
|
}
|
|
3430
|
-
|
|
3431
3354
|
.dark\:text-\[\#363B3F\]:is(.dark *) {
|
|
3432
3355
|
--tw-text-opacity: 1;
|
|
3433
3356
|
color: rgb(54 59 63 / var(--tw-text-opacity, 1));
|
|
3434
3357
|
}
|
|
3435
|
-
|
|
3436
3358
|
@media (min-width: 640px) {
|
|
3437
3359
|
|
|
3438
3360
|
.sm\:max-w-fit {
|
|
@@ -3476,7 +3398,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3476
3398
|
border-radius: var(--radius);
|
|
3477
3399
|
}
|
|
3478
3400
|
}
|
|
3479
|
-
|
|
3480
3401
|
@media (min-width: 768px) {
|
|
3481
3402
|
|
|
3482
3403
|
.md\:\!right-4 {
|
|
@@ -3536,7 +3457,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3536
3457
|
padding: 2rem;
|
|
3537
3458
|
}
|
|
3538
3459
|
}
|
|
3539
|
-
|
|
3540
3460
|
@media (min-width: 1024px) {
|
|
3541
3461
|
|
|
3542
3462
|
.lg\:\!mt-0 {
|
|
@@ -3614,137 +3534,108 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
3614
3534
|
padding-bottom: 1rem;
|
|
3615
3535
|
}
|
|
3616
3536
|
}
|
|
3617
|
-
|
|
3618
3537
|
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
3619
3538
|
-webkit-appearance: none;
|
|
3620
3539
|
appearance: none;
|
|
3621
3540
|
}
|
|
3622
|
-
|
|
3623
3541
|
.\[\&\:has\(\>\.day-range-end\)\]\:rounded-r-md:has(>.day-range-end) {
|
|
3624
3542
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
3625
3543
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
3626
3544
|
}
|
|
3627
|
-
|
|
3628
3545
|
.\[\&\:has\(\>\.day-range-start\)\]\:rounded-l-md:has(>.day-range-start) {
|
|
3629
3546
|
border-top-left-radius: calc(var(--radius) - 2px);
|
|
3630
3547
|
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
3631
3548
|
}
|
|
3632
|
-
|
|
3633
3549
|
.\[\&\:has\(\[aria-selected\]\)\]\:rounded-md:has([aria-selected]) {
|
|
3634
3550
|
border-radius: calc(var(--radius) - 2px);
|
|
3635
3551
|
}
|
|
3636
|
-
|
|
3637
3552
|
.first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child {
|
|
3638
3553
|
border-top-left-radius: calc(var(--radius) - 2px);
|
|
3639
3554
|
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
3640
3555
|
}
|
|
3641
|
-
|
|
3642
3556
|
.last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child {
|
|
3643
3557
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
3644
3558
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
3645
3559
|
}
|
|
3646
|
-
|
|
3647
3560
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
3648
3561
|
padding-right: 0px;
|
|
3649
3562
|
}
|
|
3650
|
-
|
|
3651
3563
|
.\[\&\>span\]\:\!left-\[10\%\]>span {
|
|
3652
3564
|
left: 10% !important;
|
|
3653
3565
|
}
|
|
3654
|
-
|
|
3655
3566
|
.\[\&\>span\]\:\!left-\[80\%\]>span {
|
|
3656
3567
|
left: 80% !important;
|
|
3657
3568
|
}
|
|
3658
|
-
|
|
3659
3569
|
.\[\&\>span\]\:\!top-\[20\%\]>span {
|
|
3660
3570
|
top: 20% !important;
|
|
3661
3571
|
}
|
|
3662
|
-
|
|
3663
3572
|
.\[\&\>span\]\:\!top-\[60\%\]>span {
|
|
3664
3573
|
top: 60% !important;
|
|
3665
3574
|
}
|
|
3666
|
-
|
|
3667
3575
|
.\[\&\>span\]\:line-clamp-1>span {
|
|
3668
3576
|
overflow: hidden;
|
|
3669
3577
|
display: -webkit-box;
|
|
3670
3578
|
-webkit-box-orient: vertical;
|
|
3671
3579
|
-webkit-line-clamp: 1;
|
|
3672
3580
|
}
|
|
3673
|
-
|
|
3674
3581
|
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
|
|
3675
3582
|
border-bottom-width: 0px;
|
|
3676
3583
|
}
|
|
3677
|
-
|
|
3678
3584
|
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
|
|
3679
3585
|
--tw-rotate: 180deg;
|
|
3680
3586
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3681
3587
|
}
|
|
3682
|
-
|
|
3683
3588
|
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
|
|
3684
3589
|
padding-left: 0.5rem;
|
|
3685
3590
|
padding-right: 0.5rem;
|
|
3686
3591
|
}
|
|
3687
|
-
|
|
3688
3592
|
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
|
|
3689
3593
|
padding-top: 0.375rem;
|
|
3690
3594
|
padding-bottom: 0.375rem;
|
|
3691
3595
|
}
|
|
3692
|
-
|
|
3693
3596
|
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
|
|
3694
3597
|
font-weight: 500;
|
|
3695
3598
|
}
|
|
3696
|
-
|
|
3697
3599
|
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group] {
|
|
3698
3600
|
padding-top: 0px;
|
|
3699
3601
|
}
|
|
3700
|
-
|
|
3701
3602
|
.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
|
|
3702
3603
|
padding-left: 0.5rem;
|
|
3703
3604
|
padding-right: 0.5rem;
|
|
3704
3605
|
}
|
|
3705
|
-
|
|
3706
3606
|
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
|
|
3707
3607
|
height: 1.25rem;
|
|
3708
3608
|
}
|
|
3709
|
-
|
|
3710
3609
|
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
|
|
3711
3610
|
width: 1.25rem;
|
|
3712
3611
|
}
|
|
3713
|
-
|
|
3714
3612
|
.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
|
|
3715
3613
|
height: 3rem;
|
|
3716
3614
|
}
|
|
3717
|
-
|
|
3718
3615
|
.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
|
|
3719
3616
|
padding-left: 0.5rem;
|
|
3720
3617
|
padding-right: 0.5rem;
|
|
3721
3618
|
}
|
|
3722
|
-
|
|
3723
3619
|
.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
|
|
3724
3620
|
padding-top: 0.75rem;
|
|
3725
3621
|
padding-bottom: 0.75rem;
|
|
3726
3622
|
}
|
|
3727
|
-
|
|
3728
3623
|
.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
|
|
3729
3624
|
height: 1.25rem;
|
|
3730
3625
|
}
|
|
3731
|
-
|
|
3732
3626
|
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
|
|
3733
3627
|
width: 1.25rem;
|
|
3734
3628
|
}
|
|
3735
|
-
|
|
3736
3629
|
.\[\&_p\]\:leading-relaxed p {
|
|
3737
3630
|
line-height: 1.625;
|
|
3738
3631
|
}
|
|
3739
|
-
|
|
3740
3632
|
.\[\&_svg\]\:invisible svg {
|
|
3741
3633
|
visibility: hidden;
|
|
3742
3634
|
}
|
|
3743
|
-
|
|
3744
3635
|
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
|
|
3745
3636
|
border-width: 0px;
|
|
3746
3637
|
}
|
|
3747
|
-
|
|
3748
3638
|
.\[\&_tr\]\:border-b tr {
|
|
3749
3639
|
border-bottom-width: 1px;
|
|
3750
3640
|
}
|
|
3641
|
+
|
package/dist/index.es.js
CHANGED
|
@@ -29088,7 +29088,7 @@ const I3e = Et(
|
|
|
29088
29088
|
variant: {
|
|
29089
29089
|
default: "color-button-default color-text-inverse hover:color-button-default-hover",
|
|
29090
29090
|
danger: "color-button-danger color-text-inverse hover:color-button-danger-hover",
|
|
29091
|
-
secondary: "color-
|
|
29091
|
+
secondary: "color-text-default hover:color-button-secondary-hover",
|
|
29092
29092
|
ghost: "color-text-default hover:color-button-secondary-hover"
|
|
29093
29093
|
},
|
|
29094
29094
|
size: {
|