@neo4j-ndl/base 2.0.3 → 2.0.4
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 -11
- 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.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#685](https://github.com/neo4j/neo4j-design/pull/685) [`21caf1d`](https://github.com/neo4j/neo4j-design/commit/21caf1defc7aea5fb6907092567b5b988a5d93c6) Thanks [@konsalex](https://github.com/konsalex)! - fix icon button sizing (this should have been a breaking change, ui may break in some products)
|
|
8
|
+
|
|
3
9
|
## 2.0.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -1174,7 +1174,7 @@ a.ndl-btn{
|
|
|
1174
1174
|
text-decoration-line:none;
|
|
1175
1175
|
}
|
|
1176
1176
|
.ndl-icon-btn{
|
|
1177
|
-
transition:background-color var(--transitions-stripped);
|
|
1177
|
+
transition:background-color var(--transitions-stripped-quick);
|
|
1178
1178
|
display:inline-flex;
|
|
1179
1179
|
cursor:pointer;
|
|
1180
1180
|
align-items:center;
|
|
@@ -1220,13 +1220,12 @@ a.ndl-btn{
|
|
|
1220
1220
|
cursor:not-allowed;
|
|
1221
1221
|
color:rgb(var(--theme-palette-neutral-text-weakest));
|
|
1222
1222
|
}
|
|
1223
|
-
.ndl-icon-btn.ndl-small
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
height:24px;
|
|
1223
|
+
.ndl-icon-btn.ndl-small{
|
|
1224
|
+
width:20px;
|
|
1225
|
+
height:20px;
|
|
1227
1226
|
font-size:16px;
|
|
1228
1227
|
}
|
|
1229
|
-
.ndl-icon-btn.ndl-small .ndl-icon
|
|
1228
|
+
.ndl-icon-btn.ndl-small .ndl-icon{
|
|
1230
1229
|
width:16px;
|
|
1231
1230
|
height:16px;
|
|
1232
1231
|
}
|
|
@@ -1248,14 +1247,10 @@ a.ndl-btn{
|
|
|
1248
1247
|
width:24px;
|
|
1249
1248
|
height:24px;
|
|
1250
1249
|
}
|
|
1251
|
-
.ndl-icon-btn.ndl-
|
|
1250
|
+
.ndl-icon-btn.ndl-small:not(.ndl-grouped){
|
|
1252
1251
|
width:24px;
|
|
1253
1252
|
height:24px;
|
|
1254
1253
|
}
|
|
1255
|
-
.ndl-icon-btn.ndl-small:not(.ndl-grouped){
|
|
1256
|
-
width:32px;
|
|
1257
|
-
height:32px;
|
|
1258
|
-
}
|
|
1259
1254
|
.ndl-icon-btn.ndl-medium:not(.ndl-grouped){
|
|
1260
1255
|
width:36px;
|
|
1261
1256
|
height:36px;
|
package/lib/tokens/js/tokens.js
CHANGED