@neo4j-ndl/base 2.12.10 → 2.12.12
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +106 -36
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -2718,6 +2718,10 @@ a.ndl-btn {
|
|
|
2718
2718
|
outline:2px solid transparent;
|
|
2719
2719
|
outline-offset:2px;
|
|
2720
2720
|
}
|
|
2721
|
+
.ndl-menu .ndl-menu-items:has(.ndl-menu-item-icon)
|
|
2722
|
+
> .ndl-menu-item:not(:has(.ndl-menu-item-icon)) {
|
|
2723
|
+
padding-left:32px;
|
|
2724
|
+
}
|
|
2721
2725
|
.ndl-menu .ndl-menu-item {
|
|
2722
2726
|
z-index:2;
|
|
2723
2727
|
cursor:pointer;
|
|
@@ -2820,7 +2824,11 @@ a.ndl-btn {
|
|
|
2820
2824
|
}
|
|
2821
2825
|
.ndl-datepicker .react-datepicker-popper {
|
|
2822
2826
|
z-index:10;
|
|
2823
|
-
margin-top:
|
|
2827
|
+
margin-top:4px;
|
|
2828
|
+
display:flex;
|
|
2829
|
+
width:320px;
|
|
2830
|
+
align-items:center;
|
|
2831
|
+
justify-content:center;
|
|
2824
2832
|
border-radius:4px;
|
|
2825
2833
|
border-width:1px;
|
|
2826
2834
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
@@ -2833,32 +2841,33 @@ a.ndl-btn {
|
|
|
2833
2841
|
.ndl-datepicker .react-datepicker-popper .react-datepicker__aria-live {
|
|
2834
2842
|
display:none;
|
|
2835
2843
|
}
|
|
2844
|
+
.ndl-datepicker .react-datepicker {
|
|
2845
|
+
width:100%;
|
|
2846
|
+
}
|
|
2836
2847
|
.ndl-datepicker .ndl-datepicker-header {
|
|
2837
2848
|
display:flex;
|
|
2849
|
+
height:32px;
|
|
2838
2850
|
align-items:center;
|
|
2839
2851
|
justify-content:space-between;
|
|
2840
2852
|
gap:8px;
|
|
2853
|
+
padding-left:8px;
|
|
2841
2854
|
}
|
|
2842
2855
|
.ndl-datepicker .ndl-datepicker-header .ndl-datepicker-selects {
|
|
2843
|
-
margin-left:4px;
|
|
2844
2856
|
display:flex;
|
|
2845
|
-
|
|
2846
|
-
.ndl-datepicker .ndl-datepicker-header .ndl-datepicker-selects > :not([hidden]) ~ :not([hidden]) {
|
|
2847
|
-
--tw-space-x-reverse:0;
|
|
2848
|
-
margin-right:calc(8px * var(--tw-space-x-reverse));
|
|
2849
|
-
margin-left:calc(8px * calc(1 - var(--tw-space-x-reverse)));
|
|
2857
|
+
gap:16px;
|
|
2850
2858
|
}
|
|
2851
2859
|
.ndl-datepicker .ndl-datepicker-header .ndl-datepicker-chevron {
|
|
2852
|
-
width:
|
|
2853
|
-
height:
|
|
2854
|
-
color:rgb(var(--theme-palette-neutral-text-
|
|
2860
|
+
width:16px;
|
|
2861
|
+
height:16px;
|
|
2862
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2855
2863
|
}
|
|
2856
2864
|
.ndl-datepicker .react-datepicker__day-names {
|
|
2857
2865
|
margin-top:16px;
|
|
2866
|
+
margin-bottom:8px;
|
|
2858
2867
|
display:flex;
|
|
2868
|
+
gap:8px;
|
|
2859
2869
|
}
|
|
2860
2870
|
.ndl-datepicker .react-datepicker__day-name {
|
|
2861
|
-
margin:4px;
|
|
2862
2871
|
width:32px;
|
|
2863
2872
|
height:32px;
|
|
2864
2873
|
text-align:center;
|
|
@@ -2884,12 +2893,13 @@ a.ndl-btn {
|
|
|
2884
2893
|
}
|
|
2885
2894
|
.ndl-datepicker .react-datepicker__week {
|
|
2886
2895
|
display:flex;
|
|
2896
|
+
width:100%;
|
|
2887
2897
|
}
|
|
2888
2898
|
.ndl-datepicker .react-datepicker__week .ndl-datepicker-day {
|
|
2889
2899
|
margin:4px;
|
|
2890
2900
|
display:flex;
|
|
2891
|
-
|
|
2892
|
-
|
|
2901
|
+
flex-grow:1;
|
|
2902
|
+
flex-basis:0px;
|
|
2893
2903
|
flex-direction:column;
|
|
2894
2904
|
justify-content:center;
|
|
2895
2905
|
border-radius:8px;
|
|
@@ -2909,22 +2919,24 @@ a.ndl-btn {
|
|
|
2909
2919
|
}
|
|
2910
2920
|
.ndl-datepicker .react-datepicker__week .ndl-datepicker-day:not(.react-datepicker__day--disabled):hover:not(.react-datepicker__day--selecting-range-start):not(
|
|
2911
2921
|
.react-datepicker__day--selected
|
|
2922
|
+
):not(.react-datepicker__day--range-start):not(
|
|
2923
|
+
.react-datepicker__day--range-end
|
|
2912
2924
|
) {
|
|
2913
2925
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
2926
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2914
2927
|
}
|
|
2915
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2928
|
+
.ndl-datepicker .react-datepicker__week .ndl-datepicker-day:not(.react-datepicker__day--disabled):focus:not(.react-datepicker__day--selected),
|
|
2929
|
+
.ndl-datepicker .react-datepicker__week .ndl-datepicker-day:not(.react-datepicker__day--disabled):focus-visible:not(.react-datepicker__day--selected) {
|
|
2930
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
2931
|
+
outline:2px solid transparent;
|
|
2932
|
+
outline-offset:2px;
|
|
2919
2933
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2920
|
-
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(
|
|
2934
|
+
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2921
2935
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2922
|
-
--tw-ring-color:rgb(var(--theme-palette-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
letter-spacing:0;
|
|
2927
|
-
line-height:1.25rem;
|
|
2936
|
+
--tw-ring-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
2937
|
+
}
|
|
2938
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--outside-month {
|
|
2939
|
+
visibility:hidden;
|
|
2928
2940
|
}
|
|
2929
2941
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-selecting-range:not(
|
|
2930
2942
|
.react-datepicker__day--selected
|
|
@@ -2936,20 +2948,36 @@ a.ndl-btn {
|
|
|
2936
2948
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-range {
|
|
2937
2949
|
margin-left:0px;
|
|
2938
2950
|
margin-right:0px;
|
|
2939
|
-
width:40px;
|
|
2940
2951
|
border-radius:0px;
|
|
2941
2952
|
background-color:rgb(var(--theme-palette-primary-bg-weak));
|
|
2953
|
+
padding-left:4px;
|
|
2954
|
+
padding-right:4px;
|
|
2942
2955
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2943
2956
|
}
|
|
2957
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-range:first-child {
|
|
2958
|
+
padding-left:0px;
|
|
2959
|
+
}
|
|
2960
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-range:last-child {
|
|
2961
|
+
padding-right:0px;
|
|
2962
|
+
}
|
|
2944
2963
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-range:hover {
|
|
2945
2964
|
background-color:rgb(var(--theme-palette-primary-hover-weak));
|
|
2946
2965
|
}
|
|
2947
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected,
|
|
2948
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--
|
|
2966
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--keyboard-selected,
|
|
2967
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--highlighted {
|
|
2968
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
2969
|
+
outline:2px solid transparent;
|
|
2970
|
+
outline-offset:2px;
|
|
2971
|
+
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2972
|
+
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2973
|
+
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2974
|
+
--tw-ring-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
2975
|
+
}
|
|
2976
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected {
|
|
2949
2977
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
2950
2978
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
2951
2979
|
}
|
|
2952
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:hover
|
|
2980
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:hover {
|
|
2953
2981
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
2954
2982
|
}
|
|
2955
2983
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--range-start,
|
|
@@ -2971,14 +2999,20 @@ a.ndl-btn {
|
|
|
2971
2999
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--range-end:hover {
|
|
2972
3000
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
2973
3001
|
}
|
|
3002
|
+
.ndl-datepicker .react-datepicker__monthPicker {
|
|
3003
|
+
margin-top:8px;
|
|
3004
|
+
gap:8px;
|
|
3005
|
+
}
|
|
2974
3006
|
.ndl-datepicker .react-datepicker__month-wrapper {
|
|
2975
3007
|
display:grid;
|
|
3008
|
+
width:100%;
|
|
2976
3009
|
grid-template-columns:repeat(3, minmax(0, 1fr));
|
|
3010
|
+
gap:8px;
|
|
2977
3011
|
text-align:center;
|
|
2978
3012
|
}
|
|
2979
3013
|
.ndl-datepicker .react-datepicker__month-text {
|
|
2980
|
-
|
|
2981
|
-
|
|
3014
|
+
flex-grow:1;
|
|
3015
|
+
flex-basis:0px;
|
|
2982
3016
|
cursor:pointer;
|
|
2983
3017
|
border-radius:8px;
|
|
2984
3018
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
@@ -2988,24 +3022,36 @@ a.ndl-btn {
|
|
|
2988
3022
|
line-height:1.25rem;
|
|
2989
3023
|
line-height:32px;
|
|
2990
3024
|
}
|
|
3025
|
+
.ndl-datepicker .react-datepicker__month-text.react-datepicker__month-text--keyboard-selected,
|
|
3026
|
+
.ndl-datepicker .react-datepicker__month-text:focus,
|
|
3027
|
+
.ndl-datepicker .react-datepicker__month-text:focus-visible {
|
|
3028
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
3029
|
+
outline:2px solid transparent;
|
|
3030
|
+
outline-offset:2px;
|
|
3031
|
+
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3032
|
+
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3033
|
+
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3034
|
+
--tw-ring-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
3035
|
+
}
|
|
2991
3036
|
.ndl-datepicker .react-datepicker__month-text:hover {
|
|
2992
3037
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
2993
3038
|
}
|
|
2994
|
-
.ndl-datepicker .react-datepicker__month-text--selected {
|
|
3039
|
+
.ndl-datepicker .react-datepicker__month-text.react-datepicker__month-text--selected {
|
|
2995
3040
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
2996
3041
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
2997
3042
|
}
|
|
2998
|
-
.ndl-datepicker .react-datepicker__month-text--selected:hover {
|
|
3043
|
+
.ndl-datepicker .react-datepicker__month-text.react-datepicker__month-text--selected:hover {
|
|
2999
3044
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
3000
3045
|
}
|
|
3001
3046
|
.ndl-datepicker .react-datepicker__year-wrapper {
|
|
3047
|
+
margin-top:16px;
|
|
3002
3048
|
display:grid;
|
|
3003
|
-
|
|
3049
|
+
width:100%;
|
|
3050
|
+
grid-template-columns:repeat(4, minmax(0, 1fr));
|
|
3051
|
+
gap:8px;
|
|
3004
3052
|
text-align:center;
|
|
3005
3053
|
}
|
|
3006
3054
|
.ndl-datepicker .react-datepicker__year-text {
|
|
3007
|
-
margin:4px;
|
|
3008
|
-
width:64px;
|
|
3009
3055
|
cursor:pointer;
|
|
3010
3056
|
border-radius:8px;
|
|
3011
3057
|
line-height:32px;
|
|
@@ -3013,6 +3059,17 @@ a.ndl-btn {
|
|
|
3013
3059
|
.ndl-datepicker .react-datepicker__year-text:hover {
|
|
3014
3060
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
3015
3061
|
}
|
|
3062
|
+
.ndl-datepicker .react-datepicker__year-text:focus,
|
|
3063
|
+
.ndl-datepicker .react-datepicker__year-text:focus-visible,
|
|
3064
|
+
.ndl-datepicker .react-datepicker__year-text.react-datepicker__year-text--keyboard-selected {
|
|
3065
|
+
color:rgb(var(--theme-palette-primary-text));
|
|
3066
|
+
outline:2px solid transparent;
|
|
3067
|
+
outline-offset:2px;
|
|
3068
|
+
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3069
|
+
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3070
|
+
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3071
|
+
--tw-ring-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
3072
|
+
}
|
|
3016
3073
|
.ndl-datepicker .react-datepicker__year-text--selected {
|
|
3017
3074
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
3018
3075
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
@@ -4882,6 +4939,7 @@ a.ndl-btn {
|
|
|
4882
4939
|
border-radius:8px;
|
|
4883
4940
|
border-width:1px;
|
|
4884
4941
|
padding-top:12px;
|
|
4942
|
+
padding-bottom:4px;
|
|
4885
4943
|
}
|
|
4886
4944
|
.ndl-code-block-container .ndl-code-block-title {
|
|
4887
4945
|
margin-left:12px;
|
|
@@ -4926,7 +4984,7 @@ a.ndl-btn {
|
|
|
4926
4984
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper {
|
|
4927
4985
|
position:relative;
|
|
4928
4986
|
width:100%;
|
|
4929
|
-
overflow:auto;
|
|
4987
|
+
overflow-y:auto;
|
|
4930
4988
|
}
|
|
4931
4989
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus {
|
|
4932
4990
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
@@ -7168,6 +7226,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
7168
7226
|
.n-w-48 {
|
|
7169
7227
|
width:192px;
|
|
7170
7228
|
}
|
|
7229
|
+
.n-w-\[300px\] {
|
|
7230
|
+
width:300px;
|
|
7231
|
+
}
|
|
7171
7232
|
.n-w-full {
|
|
7172
7233
|
width:100%;
|
|
7173
7234
|
}
|
|
@@ -7304,6 +7365,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
7304
7365
|
margin-top:calc(12px * calc(1 - var(--tw-space-y-reverse)));
|
|
7305
7366
|
margin-bottom:calc(12px * var(--tw-space-y-reverse));
|
|
7306
7367
|
}
|
|
7368
|
+
.n-justify-self-end {
|
|
7369
|
+
justify-self:end;
|
|
7370
|
+
}
|
|
7307
7371
|
.n-overflow-auto {
|
|
7308
7372
|
overflow:auto;
|
|
7309
7373
|
}
|
|
@@ -34686,6 +34750,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
34686
34750
|
.n-pb-\[200px\] {
|
|
34687
34751
|
padding-bottom:200px;
|
|
34688
34752
|
}
|
|
34753
|
+
.n-pb-token-3 {
|
|
34754
|
+
padding-bottom:4px;
|
|
34755
|
+
}
|
|
34689
34756
|
.n-pb-token-6 {
|
|
34690
34757
|
padding-bottom:16px;
|
|
34691
34758
|
}
|
|
@@ -34714,6 +34781,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
34714
34781
|
font-size:0.75rem;
|
|
34715
34782
|
line-height:1rem;
|
|
34716
34783
|
}
|
|
34784
|
+
.n-font-bold {
|
|
34785
|
+
font-weight:700;
|
|
34786
|
+
}
|
|
34717
34787
|
.n-font-light {
|
|
34718
34788
|
font-weight:300;
|
|
34719
34789
|
}
|
package/lib/tokens/js/tokens.js
CHANGED