@neo4j-ndl/base 2.7.5 → 2.7.6
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 +6 -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 +2 -1
- 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,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.7.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
3
9
|
## 2.7.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -3982,7 +3982,8 @@ a.ndl-btn{
|
|
|
3982
3982
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
3983
3983
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
3984
3984
|
padding-left:12px;
|
|
3985
|
-
padding-right:
|
|
3985
|
+
padding-right:32px;
|
|
3986
|
+
text-align:center;
|
|
3986
3987
|
line-height:1;
|
|
3987
3988
|
--tw-shadow:var(--theme-shadow-overlay);
|
|
3988
3989
|
--tw-shadow-colored:var(--theme-shadow-overlay);
|
package/lib/tokens/js/tokens.js
CHANGED