@neo4j-ndl/base 2.7.13 → 2.8.0
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 +18 -10
- 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.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#803](https://github.com/neo4j/needle/pull/803) [`a483539eb04530dd1626c510abb3fe696aac187f`](https://github.com/neo4j/needle/commit/a483539eb04530dd1626c510abb3fe696aac187f) Thanks [@noahmay](https://github.com/noahmay)! - Added divider component
|
|
8
|
+
|
|
9
|
+
## 2.7.14
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#844](https://github.com/neo4j/needle/pull/844) [`5c97241c68ce0cf1705a9d37847fbba030bec182`](https://github.com/neo4j/needle/commit/5c97241c68ce0cf1705a9d37847fbba030bec182) Thanks [@daugerdas](https://github.com/daugerdas)! - add max height and overflow to ContextMenu
|
|
14
|
+
|
|
3
15
|
## 2.7.13
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -998,9 +998,6 @@ h6,
|
|
|
998
998
|
.ndl-accordion .ndl-accordion-item{
|
|
999
999
|
box-sizing:border-box;
|
|
1000
1000
|
width:auto;
|
|
1001
|
-
border-style:solid;
|
|
1002
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
1003
|
-
border-bottom-width:1px;
|
|
1004
1001
|
}
|
|
1005
1002
|
.ndl-accordion .ndl-accordion-item-header{
|
|
1006
1003
|
display:flex;
|
|
@@ -2517,6 +2514,8 @@ a.ndl-btn{
|
|
|
2517
2514
|
--divider-color:var(--theme-dark-palette-neutral-border-strong);
|
|
2518
2515
|
}
|
|
2519
2516
|
.ndl-menu{
|
|
2517
|
+
max-height:95vh;
|
|
2518
|
+
overflow-y:auto;
|
|
2520
2519
|
padding:8px;
|
|
2521
2520
|
text-align:start;
|
|
2522
2521
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
@@ -5559,13 +5558,6 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5559
5558
|
border-style:solid;
|
|
5560
5559
|
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
5561
5560
|
}
|
|
5562
|
-
.ndl-divider{
|
|
5563
|
-
width:100%;
|
|
5564
|
-
align-self:center;
|
|
5565
|
-
border-top-width:1px;
|
|
5566
|
-
border-style:solid;
|
|
5567
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
5568
|
-
}
|
|
5569
5561
|
.ndl-breadcrumbs{
|
|
5570
5562
|
display:flex;
|
|
5571
5563
|
height:32px;
|
|
@@ -6103,6 +6095,22 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
6103
6095
|
display:flex;
|
|
6104
6096
|
gap:4px;
|
|
6105
6097
|
}
|
|
6098
|
+
.ndl-divider{
|
|
6099
|
+
display:block;
|
|
6100
|
+
align-self:center;
|
|
6101
|
+
border-style:solid;
|
|
6102
|
+
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
6103
|
+
}
|
|
6104
|
+
.ndl-divider.ndl-divider-horizontal{
|
|
6105
|
+
width:100%;
|
|
6106
|
+
border-top-width:1px;
|
|
6107
|
+
}
|
|
6108
|
+
.ndl-divider.ndl-divider-vertical{
|
|
6109
|
+
display:inline;
|
|
6110
|
+
height:auto;
|
|
6111
|
+
align-self:stretch;
|
|
6112
|
+
border-left-width:1px;
|
|
6113
|
+
}
|
|
6106
6114
|
.ndl-tree-view-list{
|
|
6107
6115
|
margin:0px;
|
|
6108
6116
|
list-style-type:none;
|
package/lib/tokens/js/tokens.js
CHANGED