@neo4j-ndl/base 2.6.0 → 2.6.1
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 +6 -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.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#744](https://github.com/neo4j/needle/pull/744) [`d65fdd5623085a9dcd4e95d333e54da8bd83eb54`](https://github.com/neo4j/needle/commit/d65fdd5623085a9dcd4e95d333e54da8bd83eb54) Thanks [@daugerdas](https://github.com/daugerdas)! - update focus color of CodeBlock
|
|
8
|
+
|
|
3
9
|
## 2.6.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -4633,11 +4633,6 @@ a.ndl-btn{
|
|
|
4633
4633
|
z-index:1;
|
|
4634
4634
|
height:100%;
|
|
4635
4635
|
width:12px;
|
|
4636
|
-
background-image:linear-gradient(to right, var(--tw-gradient-stops));
|
|
4637
|
-
--tw-gradient-from:transparent;
|
|
4638
|
-
--tw-gradient-to:rgb(0 0 0 / 0);
|
|
4639
|
-
--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to);
|
|
4640
|
-
--tw-gradient-to:rgb(var(--background));
|
|
4641
4636
|
--tw-content:"";
|
|
4642
4637
|
content:var(--tw-content);
|
|
4643
4638
|
}
|
|
@@ -4650,6 +4645,9 @@ a.ndl-btn{
|
|
|
4650
4645
|
width:100%;
|
|
4651
4646
|
overflow-y:auto;
|
|
4652
4647
|
}
|
|
4648
|
+
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus{
|
|
4649
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
4650
|
+
}
|
|
4653
4651
|
.ndl-code-block-container .ndl-code-block-actions{
|
|
4654
4652
|
background:rgb(var(--background));
|
|
4655
4653
|
position:absolute;
|
|
@@ -6172,6 +6170,9 @@ a.ndl-cypher-editor .cm-editor .cm-button, a .ndl-codemirror-editor .cm-editor
|
|
|
6172
6170
|
.n-list-disc{
|
|
6173
6171
|
list-style-type:disc;
|
|
6174
6172
|
}
|
|
6173
|
+
.n-list-decimal{
|
|
6174
|
+
list-style-type:decimal;
|
|
6175
|
+
}
|
|
6175
6176
|
.n-grid-cols-1{
|
|
6176
6177
|
grid-template-columns:repeat(1, minmax(0, 1fr));
|
|
6177
6178
|
}
|
package/lib/tokens/js/tokens.js
CHANGED