@atom-learning/components 3.20.0 → 3.21.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/CHANGELOG.md +3 -2
- package/dist/components/data-table/DataTable.d.ts +333 -328
- package/dist/components/data-table/pagination/Pagination.d.ts +8 -2
- package/dist/components/data-table/pagination/Pagination.js +1 -1
- package/dist/components/data-table/pagination/Pagination.js.map +1 -1
- package/dist/docgen.json +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/data-table/pagination/PaginationButtons.d.ts +0 -14
- package/dist/components/data-table/pagination/PaginationButtons.js +0 -2
- package/dist/components/data-table/pagination/PaginationButtons.js.map +0 -1
|
@@ -2731,18 +2731,10 @@ export declare const DataTable: (({ columns, data: dataProp, getAsyncData, defau
|
|
|
2731
2731
|
/** Default display of amount of items and current sorting status for 'DataTable'
|
|
2732
2732
|
*
|
|
2733
2733
|
*/
|
|
2734
|
-
Pagination:
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
md: string;
|
|
2739
|
-
lg: string;
|
|
2740
|
-
xl: string;
|
|
2741
|
-
reducedMotion: string;
|
|
2742
|
-
allowMotion: string;
|
|
2743
|
-
hover: string;
|
|
2744
|
-
}> & {
|
|
2745
|
-
css?: import("@stitches/react/types/css-util").CSS<{
|
|
2734
|
+
Pagination: {
|
|
2735
|
+
({ colorScheme, ...props }: Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "key" | keyof import("react").HTMLAttributes<HTMLElement>> & {
|
|
2736
|
+
ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
|
|
2737
|
+
}, "css"> & import("@stitches/react/types/styled-component").TransformProps<{}, {
|
|
2746
2738
|
sm: string;
|
|
2747
2739
|
md: string;
|
|
2748
2740
|
lg: string;
|
|
@@ -2750,322 +2742,335 @@ export declare const DataTable: (({ columns, data: dataProp, getAsyncData, defau
|
|
|
2750
2742
|
reducedMotion: string;
|
|
2751
2743
|
allowMotion: string;
|
|
2752
2744
|
hover: string;
|
|
2753
|
-
}
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
2745
|
+
}> & {
|
|
2746
|
+
css?: import("@stitches/react/types/css-util").CSS<{
|
|
2747
|
+
sm: string;
|
|
2748
|
+
md: string;
|
|
2749
|
+
lg: string;
|
|
2750
|
+
xl: string;
|
|
2751
|
+
reducedMotion: string;
|
|
2752
|
+
allowMotion: string;
|
|
2753
|
+
hover: string;
|
|
2754
|
+
}, {
|
|
2755
|
+
colors: {
|
|
2756
|
+
textBold: any;
|
|
2757
|
+
textRegular: any;
|
|
2758
|
+
textSubtle: any;
|
|
2759
|
+
textMinimal: any;
|
|
2760
|
+
background: any;
|
|
2761
|
+
backgroundAccent: any;
|
|
2762
|
+
grey100: any;
|
|
2763
|
+
grey200: any;
|
|
2764
|
+
grey300: any;
|
|
2765
|
+
grey400: any;
|
|
2766
|
+
grey500: any;
|
|
2767
|
+
grey600: any;
|
|
2768
|
+
grey700: any;
|
|
2769
|
+
grey800: any;
|
|
2770
|
+
grey900: any;
|
|
2771
|
+
grey1000: any;
|
|
2772
|
+
grey1100: any;
|
|
2773
|
+
grey1200: any;
|
|
2774
|
+
blue100: any;
|
|
2775
|
+
blue200: any;
|
|
2776
|
+
blue300: any;
|
|
2777
|
+
blue400: any;
|
|
2778
|
+
blue500: any;
|
|
2779
|
+
blue600: any;
|
|
2780
|
+
blue700: any;
|
|
2781
|
+
blue800: any;
|
|
2782
|
+
blue900: any;
|
|
2783
|
+
blue1000: any;
|
|
2784
|
+
blue1100: any;
|
|
2785
|
+
blue1200: any;
|
|
2786
|
+
purple100: any;
|
|
2787
|
+
purple200: any;
|
|
2788
|
+
purple300: any;
|
|
2789
|
+
purple400: any;
|
|
2790
|
+
purple500: any;
|
|
2791
|
+
purple600: any;
|
|
2792
|
+
purple700: any;
|
|
2793
|
+
purple800: any;
|
|
2794
|
+
purple900: any;
|
|
2795
|
+
purple1000: any;
|
|
2796
|
+
purple1100: any;
|
|
2797
|
+
purple1200: any;
|
|
2798
|
+
cyan100: any;
|
|
2799
|
+
cyan200: any;
|
|
2800
|
+
cyan300: any;
|
|
2801
|
+
cyan400: any;
|
|
2802
|
+
cyan500: any;
|
|
2803
|
+
cyan600: any;
|
|
2804
|
+
cyan700: any;
|
|
2805
|
+
cyan800: any;
|
|
2806
|
+
cyan900: any;
|
|
2807
|
+
cyan1000: any;
|
|
2808
|
+
cyan1100: any;
|
|
2809
|
+
cyan1200: any;
|
|
2810
|
+
green100: any;
|
|
2811
|
+
green200: any;
|
|
2812
|
+
green300: any;
|
|
2813
|
+
green400: any;
|
|
2814
|
+
green500: any;
|
|
2815
|
+
green600: any;
|
|
2816
|
+
green700: any;
|
|
2817
|
+
green800: any;
|
|
2818
|
+
green900: any;
|
|
2819
|
+
green1000: any;
|
|
2820
|
+
green1100: any;
|
|
2821
|
+
green1200: any;
|
|
2822
|
+
magenta100: any;
|
|
2823
|
+
magenta200: any;
|
|
2824
|
+
magenta300: any;
|
|
2825
|
+
magenta400: any;
|
|
2826
|
+
magenta500: any;
|
|
2827
|
+
magenta600: any;
|
|
2828
|
+
magenta700: any;
|
|
2829
|
+
magenta800: any;
|
|
2830
|
+
magenta900: any;
|
|
2831
|
+
magenta1000: any;
|
|
2832
|
+
magenta1100: any;
|
|
2833
|
+
magenta1200: any;
|
|
2834
|
+
red100: any;
|
|
2835
|
+
red200: any;
|
|
2836
|
+
red300: any;
|
|
2837
|
+
red400: any;
|
|
2838
|
+
red500: any;
|
|
2839
|
+
red600: any;
|
|
2840
|
+
red700: any;
|
|
2841
|
+
red800: any;
|
|
2842
|
+
red900: any;
|
|
2843
|
+
red1000: any;
|
|
2844
|
+
red1100: any;
|
|
2845
|
+
red1200: any;
|
|
2846
|
+
teal100: any;
|
|
2847
|
+
teal200: any;
|
|
2848
|
+
teal300: any;
|
|
2849
|
+
teal400: any;
|
|
2850
|
+
teal500: any;
|
|
2851
|
+
teal600: any;
|
|
2852
|
+
teal700: any;
|
|
2853
|
+
teal800: any;
|
|
2854
|
+
teal900: any;
|
|
2855
|
+
teal1000: any;
|
|
2856
|
+
teal1100: any;
|
|
2857
|
+
teal1200: any;
|
|
2858
|
+
orange100: any;
|
|
2859
|
+
orange200: any;
|
|
2860
|
+
orange300: any;
|
|
2861
|
+
orange400: any;
|
|
2862
|
+
orange500: any;
|
|
2863
|
+
orange600: any;
|
|
2864
|
+
orange700: any;
|
|
2865
|
+
orange800: any;
|
|
2866
|
+
orange900: any;
|
|
2867
|
+
orange1000: any;
|
|
2868
|
+
orange1100: any;
|
|
2869
|
+
orange1200: any;
|
|
2870
|
+
yellow100: any;
|
|
2871
|
+
yellow200: any;
|
|
2872
|
+
yellow300: any;
|
|
2873
|
+
yellow400: any;
|
|
2874
|
+
yellow500: any;
|
|
2875
|
+
yellow600: any;
|
|
2876
|
+
yellow700: any;
|
|
2877
|
+
yellow800: any;
|
|
2878
|
+
yellow900: any;
|
|
2879
|
+
yellow1000: any;
|
|
2880
|
+
yellow1100: any;
|
|
2881
|
+
yellow1200: any;
|
|
2882
|
+
lime100: any;
|
|
2883
|
+
lime200: any;
|
|
2884
|
+
lime300: any;
|
|
2885
|
+
lime400: any;
|
|
2886
|
+
lime500: any;
|
|
2887
|
+
lime600: any;
|
|
2888
|
+
lime700: any;
|
|
2889
|
+
lime800: any;
|
|
2890
|
+
lime900: any;
|
|
2891
|
+
lime1000: any;
|
|
2892
|
+
lime1100: any;
|
|
2893
|
+
lime1200: any;
|
|
2894
|
+
tonal50: any;
|
|
2895
|
+
tonal100: any;
|
|
2896
|
+
tonal200: any;
|
|
2897
|
+
tonal300: any;
|
|
2898
|
+
tonal400: any;
|
|
2899
|
+
tonal500: any;
|
|
2900
|
+
tonal600: any;
|
|
2901
|
+
alpha100: any;
|
|
2902
|
+
alpha150: any;
|
|
2903
|
+
alpha200: any;
|
|
2904
|
+
alpha250: any;
|
|
2905
|
+
alpha600: any;
|
|
2906
|
+
brandRed: any;
|
|
2907
|
+
brandRedAccent: any;
|
|
2908
|
+
brandGreen: any;
|
|
2909
|
+
brandGreenAccent: any;
|
|
2910
|
+
brandPurple: any;
|
|
2911
|
+
brandPurpleAccent: any;
|
|
2912
|
+
brandYellow: any;
|
|
2913
|
+
brandYellowAccent: any;
|
|
2914
|
+
infoLight: any;
|
|
2915
|
+
info: any;
|
|
2916
|
+
infoMid: any;
|
|
2917
|
+
infoDark: any;
|
|
2918
|
+
successLight: any;
|
|
2919
|
+
success: any;
|
|
2920
|
+
successMid: any;
|
|
2921
|
+
successDark: any;
|
|
2922
|
+
dangerLight: any;
|
|
2923
|
+
danger: any;
|
|
2924
|
+
dangerMid: any;
|
|
2925
|
+
dangerDark: any;
|
|
2926
|
+
warningLight: any;
|
|
2927
|
+
warning: any;
|
|
2928
|
+
warningMid: any;
|
|
2929
|
+
warningDark: any;
|
|
2930
|
+
warningText: any;
|
|
2931
|
+
subjectEnglish: any;
|
|
2932
|
+
subjectMaths: any;
|
|
2933
|
+
subjectScience: any;
|
|
2934
|
+
subjectVerbalReasoning: any;
|
|
2935
|
+
subjectNonVerbalReasoning: any;
|
|
2936
|
+
subjectCreativeWriting: any;
|
|
2937
|
+
subjectExamSkills: any;
|
|
2938
|
+
glBlueLight: any;
|
|
2939
|
+
glBluePrimary: any;
|
|
2940
|
+
glBlueDark: any;
|
|
2941
|
+
primary100: any;
|
|
2942
|
+
primary200: any;
|
|
2943
|
+
primary300: any;
|
|
2944
|
+
primary400: any;
|
|
2945
|
+
primary500: any;
|
|
2946
|
+
primary600: any;
|
|
2947
|
+
primary700: any;
|
|
2948
|
+
primary800: any;
|
|
2949
|
+
primary900: any;
|
|
2950
|
+
primary1000: any;
|
|
2951
|
+
primary1100: any;
|
|
2952
|
+
primary1200: any;
|
|
2953
|
+
};
|
|
2954
|
+
space: {
|
|
2955
|
+
"0": any;
|
|
2956
|
+
"1": any;
|
|
2957
|
+
"2": any;
|
|
2958
|
+
"3": any;
|
|
2959
|
+
"4": any;
|
|
2960
|
+
"5": any;
|
|
2961
|
+
"6": any;
|
|
2962
|
+
"7": any;
|
|
2963
|
+
"8": any;
|
|
2964
|
+
"9": any;
|
|
2965
|
+
"24": any;
|
|
2966
|
+
};
|
|
2967
|
+
fontSizes: {
|
|
2968
|
+
xs: any;
|
|
2969
|
+
sm: any;
|
|
2970
|
+
md: any;
|
|
2971
|
+
lg: any;
|
|
2972
|
+
xl: any;
|
|
2973
|
+
"2xl": any;
|
|
2974
|
+
"3xl": any;
|
|
2975
|
+
"4xl": any;
|
|
2976
|
+
};
|
|
2977
|
+
fonts: {
|
|
2978
|
+
sans: any;
|
|
2979
|
+
mono: any;
|
|
2980
|
+
display: any;
|
|
2981
|
+
body: any;
|
|
2982
|
+
};
|
|
2983
|
+
sizes: {
|
|
2984
|
+
"0": any;
|
|
2985
|
+
"1": any;
|
|
2986
|
+
"2": any;
|
|
2987
|
+
"3": any;
|
|
2988
|
+
"4": any;
|
|
2989
|
+
"5": any;
|
|
2990
|
+
"6": any;
|
|
2991
|
+
"7": any;
|
|
2992
|
+
"8": any;
|
|
2993
|
+
};
|
|
2994
|
+
radii: {
|
|
2995
|
+
"0": any;
|
|
2996
|
+
"1": any;
|
|
2997
|
+
"2": any;
|
|
2998
|
+
"3": any;
|
|
2999
|
+
round: any;
|
|
3000
|
+
};
|
|
3001
|
+
shadows: {
|
|
3002
|
+
"0": any;
|
|
3003
|
+
"1": any;
|
|
3004
|
+
"2": any;
|
|
3005
|
+
"3": any;
|
|
3006
|
+
};
|
|
3007
|
+
ratios: {
|
|
3008
|
+
"16-9": any;
|
|
3009
|
+
"3-2": any;
|
|
3010
|
+
"4-3": any;
|
|
3011
|
+
"1-1": any;
|
|
3012
|
+
"3-4": any;
|
|
3013
|
+
};
|
|
3014
|
+
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
3015
|
+
bg: (value: import("@stitches/react/types/css-util").WithPropertyValue<"background">) => {
|
|
3016
|
+
background: import("@stitches/react/types/css-util").WithPropertyValue<"background">;
|
|
3017
|
+
};
|
|
3018
|
+
size: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"size">) => {
|
|
3019
|
+
height: string | number | import("@stitches/react/types/css-util").WithScaleValue<"size">;
|
|
3020
|
+
width: string | number | import("@stitches/react/types/css-util").WithScaleValue<"size">;
|
|
3021
|
+
};
|
|
3022
|
+
p: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3023
|
+
padding: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3024
|
+
};
|
|
3025
|
+
pt: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3026
|
+
paddingTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3027
|
+
};
|
|
3028
|
+
pr: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3029
|
+
paddingRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3030
|
+
};
|
|
3031
|
+
pb: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3032
|
+
paddingBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3033
|
+
};
|
|
3034
|
+
pl: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3035
|
+
paddingLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3036
|
+
};
|
|
3037
|
+
px: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3038
|
+
paddingLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3039
|
+
paddingRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3040
|
+
};
|
|
3041
|
+
py: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3042
|
+
paddingTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3043
|
+
paddingBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3044
|
+
};
|
|
3045
|
+
m: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3046
|
+
margin: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3047
|
+
};
|
|
3048
|
+
mt: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3049
|
+
marginTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3050
|
+
};
|
|
3051
|
+
mr: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3052
|
+
marginRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3053
|
+
};
|
|
3054
|
+
mb: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3055
|
+
marginBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3056
|
+
};
|
|
3057
|
+
ml: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3058
|
+
marginLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3059
|
+
};
|
|
3060
|
+
mx: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3061
|
+
marginLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3062
|
+
marginRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3063
|
+
};
|
|
3064
|
+
my: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
3065
|
+
marginTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3066
|
+
marginBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
3067
|
+
};
|
|
3068
|
+
}> | undefined;
|
|
3069
|
+
} & {
|
|
3070
|
+
colorScheme?: import("../..").TcolorScheme | undefined;
|
|
3071
|
+
}): JSX.Element | null;
|
|
3072
|
+
displayName: string;
|
|
3073
|
+
};
|
|
3069
3074
|
/** Default row implementation for `DataTable`
|
|
3070
3075
|
*
|
|
3071
3076
|
* Renders all visible cells as `Table.Cell`. If you need more customisation options,
|