@neo4j-ndl/base 2.0.8 → 2.0.9
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 +0 -5
- 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.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#703](https://github.com/neo4j/neo4j-design/pull/703) [`278d9e6`](https://github.com/neo4j/neo4j-design/commit/278d9e6454a9a64ff30d1ac6248ad2567c5cffa5) Thanks [@konsalex](https://github.com/konsalex)! - Make codeblock scrollable without explicit click
|
|
8
|
+
|
|
3
9
|
## 2.0.8
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -4619,13 +4619,8 @@ a.ndl-btn{
|
|
|
4619
4619
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper{
|
|
4620
4620
|
position:relative;
|
|
4621
4621
|
width:100%;
|
|
4622
|
-
}
|
|
4623
|
-
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper.ndl-focused{
|
|
4624
4622
|
overflow-y:auto;
|
|
4625
4623
|
}
|
|
4626
|
-
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:not(.ndl-focused){
|
|
4627
|
-
overflow-y:hidden;
|
|
4628
|
-
}
|
|
4629
4624
|
.ndl-code-block-container .ndl-code-block-actions{
|
|
4630
4625
|
background:rgb(var(--background));
|
|
4631
4626
|
position:absolute;
|
package/lib/tokens/js/tokens.js
CHANGED