@neo4j-ndl/base 2.7.5 → 2.7.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 +6 -2
- 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.7.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#756](https://github.com/neo4j/needle/pull/756) [`21b372abc5fa1a1c87a39571a86f09eef261b580`](https://github.com/neo4j/needle/commit/21b372abc5fa1a1c87a39571a86f09eef261b580) Thanks [@daugerdas](https://github.com/daugerdas)! - fix data grid header checkbox focus
|
|
8
|
+
|
|
9
|
+
## 2.7.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#755](https://github.com/neo4j/needle/pull/755) [`94dc6c2d7ec73db03c75cc8191c444f21412cd2b`](https://github.com/neo4j/needle/commit/94dc6c2d7ec73db03c75cc8191c444f21412cd2b) Thanks [@daugerdas](https://github.com/daugerdas)! - fix table page size select icon overlap
|
|
14
|
+
|
|
3
15
|
## 2.7.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -3825,7 +3825,6 @@ a.ndl-btn{
|
|
|
3825
3825
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th{
|
|
3826
3826
|
container-type:size;
|
|
3827
3827
|
container-name:data-grid-header-cell;
|
|
3828
|
-
padding:12px 0 12px 24px;
|
|
3829
3828
|
text-align:left;
|
|
3830
3829
|
position:relative;
|
|
3831
3830
|
font-weight:bold;
|
|
@@ -3875,6 +3874,10 @@ a.ndl-btn{
|
|
|
3875
3874
|
flex-direction:row;
|
|
3876
3875
|
align-items:center;
|
|
3877
3876
|
gap:2px;
|
|
3877
|
+
padding-top:12px;
|
|
3878
|
+
padding-bottom:12px;
|
|
3879
|
+
padding-right:12px;
|
|
3880
|
+
padding-left:24px;
|
|
3878
3881
|
}
|
|
3879
3882
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-header-cell .ndl-header-icon{
|
|
3880
3883
|
min-width:16px;
|
|
@@ -3982,7 +3985,8 @@ a.ndl-btn{
|
|
|
3982
3985
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
3983
3986
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
3984
3987
|
padding-left:12px;
|
|
3985
|
-
padding-right:
|
|
3988
|
+
padding-right:32px;
|
|
3989
|
+
text-align:center;
|
|
3986
3990
|
line-height:1;
|
|
3987
3991
|
--tw-shadow:var(--theme-shadow-overlay);
|
|
3988
3992
|
--tw-shadow-colored:var(--theme-shadow-overlay);
|
package/lib/tokens/js/tokens.js
CHANGED