@neo4j-ndl/base 2.1.0 → 2.2.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 +1 -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,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#700](https://github.com/neo4j/neo4j-design/pull/700) [`3f2bb49`](https://github.com/neo4j/neo4j-design/commit/3f2bb49a3fe8480d2b1c709af76e90d9b6c3fd72) Thanks [@konsalex](https://github.com/konsalex)! - new layout components, that incorporate design tokens
|
|
8
|
+
|
|
9
|
+
## 2.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#704](https://github.com/neo4j/neo4j-design/pull/704) [`b22b869`](https://github.com/neo4j/neo4j-design/commit/b22b869a594d34badcce0161931c0e8ce265f7be) Thanks [@konsalex](https://github.com/konsalex)! - IconButtonArray fix maximum height from 38px to 36px
|
|
14
|
+
|
|
3
15
|
## 2.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -1296,7 +1296,7 @@ a.ndl-btn{
|
|
|
1296
1296
|
border-width:1px;
|
|
1297
1297
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
1298
1298
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
1299
|
-
padding:
|
|
1299
|
+
padding:3px;
|
|
1300
1300
|
}
|
|
1301
1301
|
.ndl-icon-btn-array.ndl-array-floating{
|
|
1302
1302
|
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
package/lib/tokens/js/tokens.js
CHANGED