@neo4j-ndl/base 3.7.19 → 3.7.21
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 +46 -19
- 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
|
@@ -3931,10 +3931,8 @@ a.ndl-btn {
|
|
|
3931
3931
|
position:sticky;
|
|
3932
3932
|
}
|
|
3933
3933
|
}
|
|
3934
|
-
.ndl-dropzone{
|
|
3935
|
-
background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23C4C8CD' stroke-width='1.5' stroke-dasharray='6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
3934
|
+
.ndl-dropzone {
|
|
3936
3935
|
border-radius:8px;
|
|
3937
|
-
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
3938
3936
|
}
|
|
3939
3937
|
.ndl-dropzone > div {
|
|
3940
3938
|
padding-top:32px;
|
|
@@ -3949,6 +3947,7 @@ a.ndl-btn {
|
|
|
3949
3947
|
height:100%;
|
|
3950
3948
|
flex-direction:column;
|
|
3951
3949
|
justify-content:center;
|
|
3950
|
+
background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23C4C8CD' stroke-width='1.5' stroke-dasharray='6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
3952
3951
|
}
|
|
3953
3952
|
.ndl-dropzone svg {
|
|
3954
3953
|
margin-left:auto;
|
|
@@ -3960,8 +3959,10 @@ a.ndl-btn {
|
|
|
3960
3959
|
}
|
|
3961
3960
|
.ndl-dropzone.ndl-drag-active {
|
|
3962
3961
|
background-color:rgb(var(--theme-palette-primary-bg-weak));
|
|
3963
|
-
background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23018BFF' stroke-width='2' stroke-dasharray='8' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
3964
3962
|
}
|
|
3963
|
+
.ndl-dropzone.ndl-drag-active .ndl-dropzone-inner-content{
|
|
3964
|
+
background-image:url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23018BFF' stroke-width='1.5' stroke-dasharray='6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
|
|
3965
|
+
}
|
|
3965
3966
|
.ndl-dropzone .ndl-dropzone-header {
|
|
3966
3967
|
margin-bottom:12px;
|
|
3967
3968
|
display:flex;
|
|
@@ -4765,10 +4766,11 @@ a.ndl-btn {
|
|
|
4765
4766
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step-text.ndl-vertical {
|
|
4766
4767
|
margin-left:0px;
|
|
4767
4768
|
margin-right:0px;
|
|
4769
|
+
padding-left:16px;
|
|
4768
4770
|
text-align:start;
|
|
4769
4771
|
-moz-column-gap:0;
|
|
4770
4772
|
column-gap:0;
|
|
4771
|
-
grid-column:
|
|
4773
|
+
grid-column:2;
|
|
4772
4774
|
height:unset;
|
|
4773
4775
|
}
|
|
4774
4776
|
.ndl-wizard.ndl-wizard-large .ndl-wizard-step {
|
|
@@ -8705,15 +8707,24 @@ button.ndl-avatar:focus-visible {
|
|
|
8705
8707
|
.ndl-graph-visualization-container .ndl-sidepanel-handle {
|
|
8706
8708
|
margin-left:4px;
|
|
8707
8709
|
}
|
|
8710
|
+
.n-fixed {
|
|
8711
|
+
position:fixed;
|
|
8712
|
+
}
|
|
8708
8713
|
.n-absolute {
|
|
8709
8714
|
position:absolute;
|
|
8710
8715
|
}
|
|
8711
8716
|
.n-relative {
|
|
8712
8717
|
position:relative;
|
|
8713
8718
|
}
|
|
8719
|
+
.n-left-\[auto\] {
|
|
8720
|
+
left:auto;
|
|
8721
|
+
}
|
|
8714
8722
|
.n-right-token-3 {
|
|
8715
8723
|
right:4px;
|
|
8716
8724
|
}
|
|
8725
|
+
.n-top-\[110px\] {
|
|
8726
|
+
top:110px;
|
|
8727
|
+
}
|
|
8717
8728
|
.n-top-token-11 {
|
|
8718
8729
|
top:96px;
|
|
8719
8730
|
}
|
|
@@ -8878,12 +8889,15 @@ button.ndl-avatar:focus-visible {
|
|
|
8878
8889
|
.n-h-\[1000px\] {
|
|
8879
8890
|
height:1000px;
|
|
8880
8891
|
}
|
|
8892
|
+
.n-h-\[100px\] {
|
|
8893
|
+
height:100px;
|
|
8894
|
+
}
|
|
8895
|
+
.n-h-\[200px\] {
|
|
8896
|
+
height:200px;
|
|
8897
|
+
}
|
|
8881
8898
|
.n-h-\[290px\] {
|
|
8882
8899
|
height:290px;
|
|
8883
8900
|
}
|
|
8884
|
-
.n-h-\[400px\] {
|
|
8885
|
-
height:400px;
|
|
8886
|
-
}
|
|
8887
8901
|
.n-h-\[500px\] {
|
|
8888
8902
|
height:500px;
|
|
8889
8903
|
}
|
|
@@ -8899,12 +8913,21 @@ button.ndl-avatar:focus-visible {
|
|
|
8899
8913
|
.n-h-token-6 {
|
|
8900
8914
|
height:16px;
|
|
8901
8915
|
}
|
|
8916
|
+
.n-h-token-8 {
|
|
8917
|
+
height:32px;
|
|
8918
|
+
}
|
|
8902
8919
|
.n-h-token-9 {
|
|
8903
8920
|
height:48px;
|
|
8904
8921
|
}
|
|
8905
8922
|
.n-min-h-\[700px\] {
|
|
8906
8923
|
min-height:700px;
|
|
8907
8924
|
}
|
|
8925
|
+
.n-w-1\/2 {
|
|
8926
|
+
width:50%;
|
|
8927
|
+
}
|
|
8928
|
+
.n-w-1\/4 {
|
|
8929
|
+
width:25%;
|
|
8930
|
+
}
|
|
8908
8931
|
.n-w-48 {
|
|
8909
8932
|
width:192px;
|
|
8910
8933
|
}
|
|
@@ -8937,6 +8960,9 @@ button.ndl-avatar:focus-visible {
|
|
|
8937
8960
|
.n-w-token-11 {
|
|
8938
8961
|
width:96px;
|
|
8939
8962
|
}
|
|
8963
|
+
.n-w-token-8 {
|
|
8964
|
+
width:32px;
|
|
8965
|
+
}
|
|
8940
8966
|
.n-max-w-\[1024px\] {
|
|
8941
8967
|
max-width:1024px;
|
|
8942
8968
|
}
|
|
@@ -8991,6 +9017,12 @@ button.ndl-avatar:focus-visible {
|
|
|
8991
9017
|
.n-grid-cols-1 {
|
|
8992
9018
|
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
8993
9019
|
}
|
|
9020
|
+
.n-grid-cols-6 {
|
|
9021
|
+
grid-template-columns:repeat(6, minmax(0, 1fr));
|
|
9022
|
+
}
|
|
9023
|
+
.n-grid-rows-2 {
|
|
9024
|
+
grid-template-rows:repeat(2, minmax(0, 1fr));
|
|
9025
|
+
}
|
|
8994
9026
|
.n-flex-row {
|
|
8995
9027
|
flex-direction:row;
|
|
8996
9028
|
}
|
|
@@ -9021,6 +9053,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9021
9053
|
.n-justify-between {
|
|
9022
9054
|
justify-content:space-between;
|
|
9023
9055
|
}
|
|
9056
|
+
.n-justify-items-center {
|
|
9057
|
+
justify-items:center;
|
|
9058
|
+
}
|
|
9024
9059
|
.n-gap-2 {
|
|
9025
9060
|
gap:8px;
|
|
9026
9061
|
}
|
|
@@ -9061,6 +9096,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9061
9096
|
-moz-column-gap:48px;
|
|
9062
9097
|
column-gap:48px;
|
|
9063
9098
|
}
|
|
9099
|
+
.n-gap-y-token-2 {
|
|
9100
|
+
row-gap:2px;
|
|
9101
|
+
}
|
|
9064
9102
|
.n-gap-y-token-4 {
|
|
9065
9103
|
row-gap:8px;
|
|
9066
9104
|
}
|
|
@@ -9101,9 +9139,6 @@ button.ndl-avatar:focus-visible {
|
|
|
9101
9139
|
.n-rounded-3xl {
|
|
9102
9140
|
border-radius:16px;
|
|
9103
9141
|
}
|
|
9104
|
-
.n-rounded-5xl {
|
|
9105
|
-
border-radius:20px;
|
|
9106
|
-
}
|
|
9107
9142
|
.n-rounded-lg {
|
|
9108
9143
|
border-radius:8px;
|
|
9109
9144
|
}
|
|
@@ -43822,10 +43857,6 @@ button.ndl-avatar:focus-visible {
|
|
|
43822
43857
|
padding-left:32px;
|
|
43823
43858
|
padding-right:32px;
|
|
43824
43859
|
}
|
|
43825
|
-
.n-px-token-9 {
|
|
43826
|
-
padding-left:48px;
|
|
43827
|
-
padding-right:48px;
|
|
43828
|
-
}
|
|
43829
43860
|
.n-py-token-2 {
|
|
43830
43861
|
padding-top:2px;
|
|
43831
43862
|
padding-bottom:2px;
|
|
@@ -43842,10 +43873,6 @@ button.ndl-avatar:focus-visible {
|
|
|
43842
43873
|
padding-top:16px;
|
|
43843
43874
|
padding-bottom:16px;
|
|
43844
43875
|
}
|
|
43845
|
-
.n-py-token-9 {
|
|
43846
|
-
padding-top:48px;
|
|
43847
|
-
padding-bottom:48px;
|
|
43848
|
-
}
|
|
43849
43876
|
.n-pb-\[200px\] {
|
|
43850
43877
|
padding-bottom:200px;
|
|
43851
43878
|
}
|
package/lib/tokens/js/tokens.js
CHANGED