@neo4j-ndl/base 2.12.11 → 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 +101 -38
- 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
|
@@ -2824,7 +2824,11 @@ a.ndl-btn {
|
|
|
2824
2824
|
}
|
|
2825
2825
|
.ndl-datepicker .react-datepicker-popper {
|
|
2826
2826
|
z-index:10;
|
|
2827
|
-
margin-top:
|
|
2827
|
+
margin-top:4px;
|
|
2828
|
+
display:flex;
|
|
2829
|
+
width:320px;
|
|
2830
|
+
align-items:center;
|
|
2831
|
+
justify-content:center;
|
|
2828
2832
|
border-radius:4px;
|
|
2829
2833
|
border-width:1px;
|
|
2830
2834
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
@@ -2837,32 +2841,33 @@ a.ndl-btn {
|
|
|
2837
2841
|
.ndl-datepicker .react-datepicker-popper .react-datepicker__aria-live {
|
|
2838
2842
|
display:none;
|
|
2839
2843
|
}
|
|
2844
|
+
.ndl-datepicker .react-datepicker {
|
|
2845
|
+
width:100%;
|
|
2846
|
+
}
|
|
2840
2847
|
.ndl-datepicker .ndl-datepicker-header {
|
|
2841
2848
|
display:flex;
|
|
2849
|
+
height:32px;
|
|
2842
2850
|
align-items:center;
|
|
2843
2851
|
justify-content:space-between;
|
|
2844
2852
|
gap:8px;
|
|
2853
|
+
padding-left:8px;
|
|
2845
2854
|
}
|
|
2846
2855
|
.ndl-datepicker .ndl-datepicker-header .ndl-datepicker-selects {
|
|
2847
|
-
margin-left:4px;
|
|
2848
2856
|
display:flex;
|
|
2849
|
-
|
|
2850
|
-
.ndl-datepicker .ndl-datepicker-header .ndl-datepicker-selects > :not([hidden]) ~ :not([hidden]) {
|
|
2851
|
-
--tw-space-x-reverse:0;
|
|
2852
|
-
margin-right:calc(8px * var(--tw-space-x-reverse));
|
|
2853
|
-
margin-left:calc(8px * calc(1 - var(--tw-space-x-reverse)));
|
|
2857
|
+
gap:16px;
|
|
2854
2858
|
}
|
|
2855
2859
|
.ndl-datepicker .ndl-datepicker-header .ndl-datepicker-chevron {
|
|
2856
|
-
width:
|
|
2857
|
-
height:
|
|
2858
|
-
color:rgb(var(--theme-palette-neutral-text-
|
|
2860
|
+
width:16px;
|
|
2861
|
+
height:16px;
|
|
2862
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2859
2863
|
}
|
|
2860
2864
|
.ndl-datepicker .react-datepicker__day-names {
|
|
2861
2865
|
margin-top:16px;
|
|
2866
|
+
margin-bottom:8px;
|
|
2862
2867
|
display:flex;
|
|
2868
|
+
gap:8px;
|
|
2863
2869
|
}
|
|
2864
2870
|
.ndl-datepicker .react-datepicker__day-name {
|
|
2865
|
-
margin:4px;
|
|
2866
2871
|
width:32px;
|
|
2867
2872
|
height:32px;
|
|
2868
2873
|
text-align:center;
|
|
@@ -2888,12 +2893,13 @@ a.ndl-btn {
|
|
|
2888
2893
|
}
|
|
2889
2894
|
.ndl-datepicker .react-datepicker__week {
|
|
2890
2895
|
display:flex;
|
|
2896
|
+
width:100%;
|
|
2891
2897
|
}
|
|
2892
2898
|
.ndl-datepicker .react-datepicker__week .ndl-datepicker-day {
|
|
2893
2899
|
margin:4px;
|
|
2894
2900
|
display:flex;
|
|
2895
|
-
|
|
2896
|
-
|
|
2901
|
+
flex-grow:1;
|
|
2902
|
+
flex-basis:0px;
|
|
2897
2903
|
flex-direction:column;
|
|
2898
2904
|
justify-content:center;
|
|
2899
2905
|
border-radius:8px;
|
|
@@ -2913,22 +2919,24 @@ a.ndl-btn {
|
|
|
2913
2919
|
}
|
|
2914
2920
|
.ndl-datepicker .react-datepicker__week .ndl-datepicker-day:not(.react-datepicker__day--disabled):hover:not(.react-datepicker__day--selecting-range-start):not(
|
|
2915
2921
|
.react-datepicker__day--selected
|
|
2922
|
+
):not(.react-datepicker__day--range-start):not(
|
|
2923
|
+
.react-datepicker__day--range-end
|
|
2916
2924
|
) {
|
|
2917
2925
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
2926
|
+
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2918
2927
|
}
|
|
2919
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
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;
|
|
2923
2933
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2924
|
-
--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);
|
|
2925
2935
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2926
|
-
--tw-ring-color:rgb(var(--theme-palette-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
letter-spacing:0;
|
|
2931
|
-
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;
|
|
2932
2940
|
}
|
|
2933
2941
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-selecting-range:not(
|
|
2934
2942
|
.react-datepicker__day--selected
|
|
@@ -2940,20 +2948,36 @@ a.ndl-btn {
|
|
|
2940
2948
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-range {
|
|
2941
2949
|
margin-left:0px;
|
|
2942
2950
|
margin-right:0px;
|
|
2943
|
-
width:40px;
|
|
2944
2951
|
border-radius:0px;
|
|
2945
2952
|
background-color:rgb(var(--theme-palette-primary-bg-weak));
|
|
2953
|
+
padding-left:4px;
|
|
2954
|
+
padding-right:4px;
|
|
2946
2955
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
2947
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
|
+
}
|
|
2948
2963
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--in-range:hover {
|
|
2949
2964
|
background-color:rgb(var(--theme-palette-primary-hover-weak));
|
|
2950
2965
|
}
|
|
2951
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected,
|
|
2952
|
-
.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 {
|
|
2953
2977
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
2954
2978
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
2955
2979
|
}
|
|
2956
|
-
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:hover
|
|
2980
|
+
.ndl-datepicker .react-datepicker__week .react-datepicker__day--selected:hover {
|
|
2957
2981
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
2958
2982
|
}
|
|
2959
2983
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--range-start,
|
|
@@ -2975,14 +2999,20 @@ a.ndl-btn {
|
|
|
2975
2999
|
.ndl-datepicker .react-datepicker__week .react-datepicker__day--range-end:hover {
|
|
2976
3000
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
2977
3001
|
}
|
|
3002
|
+
.ndl-datepicker .react-datepicker__monthPicker {
|
|
3003
|
+
margin-top:8px;
|
|
3004
|
+
gap:8px;
|
|
3005
|
+
}
|
|
2978
3006
|
.ndl-datepicker .react-datepicker__month-wrapper {
|
|
2979
3007
|
display:grid;
|
|
3008
|
+
width:100%;
|
|
2980
3009
|
grid-template-columns:repeat(3, minmax(0, 1fr));
|
|
3010
|
+
gap:8px;
|
|
2981
3011
|
text-align:center;
|
|
2982
3012
|
}
|
|
2983
3013
|
.ndl-datepicker .react-datepicker__month-text {
|
|
2984
|
-
|
|
2985
|
-
|
|
3014
|
+
flex-grow:1;
|
|
3015
|
+
flex-basis:0px;
|
|
2986
3016
|
cursor:pointer;
|
|
2987
3017
|
border-radius:8px;
|
|
2988
3018
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
@@ -2992,24 +3022,36 @@ a.ndl-btn {
|
|
|
2992
3022
|
line-height:1.25rem;
|
|
2993
3023
|
line-height:32px;
|
|
2994
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
|
+
}
|
|
2995
3036
|
.ndl-datepicker .react-datepicker__month-text:hover {
|
|
2996
3037
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
2997
3038
|
}
|
|
2998
|
-
.ndl-datepicker .react-datepicker__month-text--selected {
|
|
3039
|
+
.ndl-datepicker .react-datepicker__month-text.react-datepicker__month-text--selected {
|
|
2999
3040
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
3000
3041
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
3001
3042
|
}
|
|
3002
|
-
.ndl-datepicker .react-datepicker__month-text--selected:hover {
|
|
3043
|
+
.ndl-datepicker .react-datepicker__month-text.react-datepicker__month-text--selected:hover {
|
|
3003
3044
|
background-color:rgb(var(--theme-palette-primary-hover-strong));
|
|
3004
3045
|
}
|
|
3005
3046
|
.ndl-datepicker .react-datepicker__year-wrapper {
|
|
3047
|
+
margin-top:16px;
|
|
3006
3048
|
display:grid;
|
|
3007
|
-
|
|
3049
|
+
width:100%;
|
|
3050
|
+
grid-template-columns:repeat(4, minmax(0, 1fr));
|
|
3051
|
+
gap:8px;
|
|
3008
3052
|
text-align:center;
|
|
3009
3053
|
}
|
|
3010
3054
|
.ndl-datepicker .react-datepicker__year-text {
|
|
3011
|
-
margin:4px;
|
|
3012
|
-
width:64px;
|
|
3013
3055
|
cursor:pointer;
|
|
3014
3056
|
border-radius:8px;
|
|
3015
3057
|
line-height:32px;
|
|
@@ -3017,6 +3059,17 @@ a.ndl-btn {
|
|
|
3017
3059
|
.ndl-datepicker .react-datepicker__year-text:hover {
|
|
3018
3060
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
3019
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
|
+
}
|
|
3020
3073
|
.ndl-datepicker .react-datepicker__year-text--selected {
|
|
3021
3074
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
3022
3075
|
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
@@ -4886,6 +4939,7 @@ a.ndl-btn {
|
|
|
4886
4939
|
border-radius:8px;
|
|
4887
4940
|
border-width:1px;
|
|
4888
4941
|
padding-top:12px;
|
|
4942
|
+
padding-bottom:4px;
|
|
4889
4943
|
}
|
|
4890
4944
|
.ndl-code-block-container .ndl-code-block-title {
|
|
4891
4945
|
margin-left:12px;
|
|
@@ -4930,7 +4984,7 @@ a.ndl-btn {
|
|
|
4930
4984
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper {
|
|
4931
4985
|
position:relative;
|
|
4932
4986
|
width:100%;
|
|
4933
|
-
overflow:auto;
|
|
4987
|
+
overflow-y:auto;
|
|
4934
4988
|
}
|
|
4935
4989
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus {
|
|
4936
4990
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
@@ -7172,8 +7226,8 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
7172
7226
|
.n-w-48 {
|
|
7173
7227
|
width:192px;
|
|
7174
7228
|
}
|
|
7175
|
-
.n-w
|
|
7176
|
-
width:
|
|
7229
|
+
.n-w-\[300px\] {
|
|
7230
|
+
width:300px;
|
|
7177
7231
|
}
|
|
7178
7232
|
.n-w-full {
|
|
7179
7233
|
width:100%;
|
|
@@ -7311,6 +7365,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
7311
7365
|
margin-top:calc(12px * calc(1 - var(--tw-space-y-reverse)));
|
|
7312
7366
|
margin-bottom:calc(12px * var(--tw-space-y-reverse));
|
|
7313
7367
|
}
|
|
7368
|
+
.n-justify-self-end {
|
|
7369
|
+
justify-self:end;
|
|
7370
|
+
}
|
|
7314
7371
|
.n-overflow-auto {
|
|
7315
7372
|
overflow:auto;
|
|
7316
7373
|
}
|
|
@@ -34693,6 +34750,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
34693
34750
|
.n-pb-\[200px\] {
|
|
34694
34751
|
padding-bottom:200px;
|
|
34695
34752
|
}
|
|
34753
|
+
.n-pb-token-3 {
|
|
34754
|
+
padding-bottom:4px;
|
|
34755
|
+
}
|
|
34696
34756
|
.n-pb-token-6 {
|
|
34697
34757
|
padding-bottom:16px;
|
|
34698
34758
|
}
|
|
@@ -34721,6 +34781,9 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
34721
34781
|
font-size:0.75rem;
|
|
34722
34782
|
line-height:1rem;
|
|
34723
34783
|
}
|
|
34784
|
+
.n-font-bold {
|
|
34785
|
+
font-weight:700;
|
|
34786
|
+
}
|
|
34724
34787
|
.n-font-light {
|
|
34725
34788
|
font-weight:300;
|
|
34726
34789
|
}
|
package/lib/tokens/js/tokens.js
CHANGED