@neo4j-ndl/base 2.9.5 → 2.9.7
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 +12 -0
- 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 +20 -20
- 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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.9.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#919](https://github.com/neo4j/needle/pull/919) [`48c4b14d5cea02c980380a25c11d802b8f61f884`](https://github.com/neo4j/needle/commit/48c4b14d5cea02c980380a25c11d802b8f61f884) Thanks [@basickarl](https://github.com/basickarl)! - Fixed group header heading size
|
|
8
|
+
|
|
9
|
+
## 2.9.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#915](https://github.com/neo4j/needle/pull/915) [`b665da5a2b594bdf0ef14943cb50b9a89889066b`](https://github.com/neo4j/needle/commit/b665da5a2b594bdf0ef14943cb50b9a89889066b) Thanks [@basickarl](https://github.com/basickarl)! - reverted default outline
|
|
14
|
+
|
|
3
15
|
## 2.9.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -1016,14 +1016,16 @@ h6,
|
|
|
1016
1016
|
padding-bottom:12px;
|
|
1017
1017
|
padding-right:12px;
|
|
1018
1018
|
}
|
|
1019
|
-
.ndl-accordion .ndl-accordion-item-header-button:focus,
|
|
1020
|
-
.ndl-accordion .ndl-accordion-item-header-button:focus-visible{
|
|
1021
|
-
border-radius:0px;
|
|
1022
|
-
}
|
|
1023
1019
|
.ndl-accordion .ndl-accordion-item-header-button-disabled{
|
|
1024
1020
|
cursor:not-allowed;
|
|
1025
1021
|
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
1026
1022
|
}
|
|
1023
|
+
.ndl-accordion .ndl-accordion-item-header-button:focus-visible{
|
|
1024
|
+
outline-style:solid;
|
|
1025
|
+
outline-width:2px;
|
|
1026
|
+
outline-offset:-2px;
|
|
1027
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
1028
|
+
}
|
|
1027
1029
|
.ndl-accordion .ndl-accordion-item-header-button:hover{
|
|
1028
1030
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
1029
1031
|
}
|
|
@@ -1059,6 +1061,13 @@ h6,
|
|
|
1059
1061
|
height:0px;
|
|
1060
1062
|
overflow:hidden;
|
|
1061
1063
|
}
|
|
1064
|
+
.ndl-accordion .ndl-accordion-item-content:focus-visible{
|
|
1065
|
+
border-radius:4px;
|
|
1066
|
+
outline-style:solid;
|
|
1067
|
+
outline-width:2px;
|
|
1068
|
+
outline-offset:1px;
|
|
1069
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
1070
|
+
}
|
|
1062
1071
|
.ndl-accordion .ndl-accordion-item-content-right{
|
|
1063
1072
|
padding-left:36px;
|
|
1064
1073
|
}
|
|
@@ -3576,7 +3585,6 @@ a.ndl-btn{
|
|
|
3576
3585
|
.ndl-data-grid-focusable-cells .ndl-focusable-cell:focus-visible{
|
|
3577
3586
|
z-index:2;
|
|
3578
3587
|
border:2px solid rgb(var(--theme-palette-primary-focus));
|
|
3579
|
-
border-radius:0px;
|
|
3580
3588
|
}
|
|
3581
3589
|
.ndl-data-grid-bottom-border{
|
|
3582
3590
|
content:'';
|
|
@@ -5409,10 +5417,10 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5409
5417
|
}
|
|
5410
5418
|
.ndl-side-navigation .ndl-side-navigation-nav-item > .ndl-side-navigation-inner-item.ndl-side-navigation-group-header{
|
|
5411
5419
|
height:48px;
|
|
5412
|
-
font-size:var(--font-size-
|
|
5420
|
+
font-size:var(--font-size-h6);
|
|
5413
5421
|
font-weight:var(--font-weight-bold);
|
|
5414
5422
|
letter-spacing:0.016rem;
|
|
5415
|
-
line-height:1.
|
|
5423
|
+
line-height:1.5rem;
|
|
5416
5424
|
}
|
|
5417
5425
|
.ndl-side-navigation .ndl-side-navigation-nav-item > .ndl-side-navigation-inner-item.ndl-selected{
|
|
5418
5426
|
position:relative;
|
|
@@ -5720,16 +5728,17 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5720
5728
|
.ndl-avatar .ndl-avatar-shape.ndl-avatar-disabled{
|
|
5721
5729
|
cursor:not-allowed;
|
|
5722
5730
|
}
|
|
5723
|
-
.ndl-avatar .ndl-avatar-shape
|
|
5724
|
-
.ndl-avatar .ndl-avatar-shape:focus-visible{
|
|
5731
|
+
.ndl-avatar .ndl-avatar-shape{
|
|
5725
5732
|
outline:2px solid transparent;
|
|
5726
5733
|
outline-offset:2px;
|
|
5734
|
+
--tw-ring-color:rgb(var(--theme-palette-primary-focus));
|
|
5735
|
+
--tw-ring-offset-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
5736
|
+
}
|
|
5737
|
+
.ndl-avatar .ndl-avatar-shape:focus-visible{
|
|
5727
5738
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
5728
5739
|
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
5729
5740
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
5730
|
-
--tw-ring-color:rgb(var(--theme-palette-primary-focus));
|
|
5731
5741
|
--tw-ring-offset-width:1px;
|
|
5732
|
-
--tw-ring-offset-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
5733
5742
|
}
|
|
5734
5743
|
.ndl-avatar .ndl-avatar-circle{
|
|
5735
5744
|
border-radius:9999px;
|
|
@@ -47677,15 +47686,6 @@ html{
|
|
|
47677
47686
|
-moz-osx-font-smoothing:grayscale;
|
|
47678
47687
|
text-rendering:optimizeLegibility;
|
|
47679
47688
|
}
|
|
47680
|
-
body *[class^='ndl-'][tabindex^='0']:focus-visible,
|
|
47681
|
-
body *[class^='ndl-'][tabindex^='0']:focus,
|
|
47682
|
-
html *[class^='ndl-'][tabindex^='0']:focus-visible,
|
|
47683
|
-
html *[class^='ndl-'][tabindex^='0']:focus{
|
|
47684
|
-
outline-style:solid;
|
|
47685
|
-
outline-width:2px;
|
|
47686
|
-
outline-offset:-2px;
|
|
47687
|
-
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
47688
|
-
}
|
|
47689
47689
|
.first-letter\:n-capitalize::first-letter{
|
|
47690
47690
|
text-transform:capitalize;
|
|
47691
47691
|
}
|
package/lib/tokens/js/tokens.js
CHANGED