@neo4j-ndl/base 2.7.14 → 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 +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 +16 -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,11 @@
|
|
|
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
|
+
|
|
3
9
|
## 2.7.14
|
|
4
10
|
|
|
5
11
|
### 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;
|
|
@@ -5561,13 +5558,6 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
5561
5558
|
border-style:solid;
|
|
5562
5559
|
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
5563
5560
|
}
|
|
5564
|
-
.ndl-divider{
|
|
5565
|
-
width:100%;
|
|
5566
|
-
align-self:center;
|
|
5567
|
-
border-top-width:1px;
|
|
5568
|
-
border-style:solid;
|
|
5569
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
5570
|
-
}
|
|
5571
5561
|
.ndl-breadcrumbs{
|
|
5572
5562
|
display:flex;
|
|
5573
5563
|
height:32px;
|
|
@@ -6105,6 +6095,22 @@ a.ndl-cypher-editor .cm-editor .cm-button,a .ndl-codemirror-editor .cm-editor .c
|
|
|
6105
6095
|
display:flex;
|
|
6106
6096
|
gap:4px;
|
|
6107
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
|
+
}
|
|
6108
6114
|
.ndl-tree-view-list{
|
|
6109
6115
|
margin:0px;
|
|
6110
6116
|
list-style-type:none;
|
package/lib/tokens/js/tokens.js
CHANGED