@neo4j-ndl/base 3.3.3 → 3.3.5
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 +27 -15
- 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
|
@@ -1170,10 +1170,11 @@ h6,
|
|
|
1170
1170
|
.ndl-accordion .ndl-accordion-item-header-icon-wrapper-left {
|
|
1171
1171
|
flex-direction:row-reverse;
|
|
1172
1172
|
}
|
|
1173
|
-
.ndl-accordion .ndl-accordion-item-header-icon{
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1173
|
+
.ndl-accordion .ndl-accordion-item-header-icon {
|
|
1174
|
+
width:20px;
|
|
1175
|
+
height:20px;
|
|
1176
|
+
flex-shrink:0;
|
|
1177
|
+
}
|
|
1177
1178
|
.ndl-accordion .ndl-accordion-item-content {
|
|
1178
1179
|
visibility:hidden;
|
|
1179
1180
|
height:0px;
|
|
@@ -2636,10 +2637,12 @@ a.ndl-btn {
|
|
|
2636
2637
|
border-radius:8px;
|
|
2637
2638
|
background-color:rgb(var(--theme-palette-neutral-bg-default));
|
|
2638
2639
|
}
|
|
2639
|
-
.ndl-menu .ndl-menu-item:focus-visible:not(.ndl-disabled){
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2640
|
+
.ndl-menu .ndl-menu-item:focus-visible:not(.ndl-disabled) {
|
|
2641
|
+
outline-style:solid;
|
|
2642
|
+
outline-width:2px;
|
|
2643
|
+
outline-offset:-2px;
|
|
2644
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
2645
|
+
}
|
|
2643
2646
|
.ndl-menu .ndl-menu-item.ndl-disabled {
|
|
2644
2647
|
cursor:not-allowed;
|
|
2645
2648
|
}
|
|
@@ -2665,13 +2668,15 @@ a.ndl-btn {
|
|
|
2665
2668
|
letter-spacing:0.016rem;
|
|
2666
2669
|
line-height:1.25rem;
|
|
2667
2670
|
}
|
|
2668
|
-
.ndl-menu .ndl-menu-item-icon{
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2671
|
+
.ndl-menu .ndl-menu-item-icon {
|
|
2672
|
+
display:flex;
|
|
2673
|
+
height:20px;
|
|
2674
|
+
width:16px;
|
|
2675
|
+
flex-shrink:0;
|
|
2676
|
+
align-items:center;
|
|
2677
|
+
justify-content:center;
|
|
2678
|
+
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
2679
|
+
}
|
|
2675
2680
|
.ndl-menu .ndl-menu-header {
|
|
2676
2681
|
margin-bottom:16px;
|
|
2677
2682
|
padding-left:8px;
|
|
@@ -7736,6 +7741,10 @@ button.ndl-avatar:focus-visible {
|
|
|
7736
7741
|
width:24px;
|
|
7737
7742
|
height:24px;
|
|
7738
7743
|
}
|
|
7744
|
+
.n-size-token-8 {
|
|
7745
|
+
width:32px;
|
|
7746
|
+
height:32px;
|
|
7747
|
+
}
|
|
7739
7748
|
.n-size-token-9 {
|
|
7740
7749
|
width:48px;
|
|
7741
7750
|
height:48px;
|
|
@@ -7883,6 +7892,9 @@ button.ndl-avatar:focus-visible {
|
|
|
7883
7892
|
.n-gap-2 {
|
|
7884
7893
|
gap:8px;
|
|
7885
7894
|
}
|
|
7895
|
+
.n-gap-4 {
|
|
7896
|
+
gap:16px;
|
|
7897
|
+
}
|
|
7886
7898
|
.n-gap-9 {
|
|
7887
7899
|
gap:36px;
|
|
7888
7900
|
}
|
package/lib/tokens/js/tokens.js
CHANGED