@neo4j-ndl/base 2.3.1 → 2.3.2
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/LICENSES.txt +4862 -0
- package/lib/NOTICE.txt +5 -1
- 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 -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/lib/NOTICE.txt
CHANGED
|
@@ -183,7 +183,7 @@ Third-party licenses
|
|
|
183
183
|
│ ├─ [38;5;173meslint-plugin-jsx-a11y[39m[38;5;111m@[39m[38;5;111mnpm:6.8.0 [a2e03][39m (via [38;5;37mnpm:^6.5.1 [a2e03][39m)
|
|
184
184
|
│ │ ├─ URL: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y
|
|
185
185
|
│ │ └─ VendorName: Ethan Cohen
|
|
186
|
-
│ ├─ [38;5;173meslint-plugin-prettier[39m[38;5;111m@[39m[38;5;111mnpm:
|
|
186
|
+
│ ├─ [38;5;173meslint-plugin-prettier[39m[38;5;111m@[39m[38;5;111mnpm:5.1.3 [a2e03][39m (via [38;5;37mnpm:5.1.3 [a2e03][39m)
|
|
187
187
|
│ │ ├─ URL: git+https://github.com/prettier/eslint-plugin-prettier.git
|
|
188
188
|
│ │ ├─ VendorName: Teddy Katz
|
|
189
189
|
│ │ └─ VendorUrl: https://github.com/prettier/eslint-plugin-prettier#readme
|
|
@@ -219,6 +219,10 @@ Third-party licenses
|
|
|
219
219
|
│ ├─ [38;5;173mpostcss-nested[39m[38;5;111m@[39m[38;5;111mnpm:6.0.1 [708d2][39m (via [38;5;37mnpm:^6.0.0 [708d2][39m)
|
|
220
220
|
│ │ ├─ URL: git+https://github.com/postcss/postcss-nested.git
|
|
221
221
|
│ │ └─ VendorName: Andrey Sitnik
|
|
222
|
+
│ ├─ [38;5;173mprettier[39m[38;5;111m@[39m[38;5;111mnpm:3.2.2[39m (via [38;5;37mnpm:3.2.2[39m)
|
|
223
|
+
│ │ ├─ URL: git+https://github.com/prettier/prettier.git
|
|
224
|
+
│ │ ├─ VendorName: James Long
|
|
225
|
+
│ │ └─ VendorUrl: https://prettier.io
|
|
222
226
|
│ ├─ [38;5;173mprettier[39m[38;5;111m@[39m[38;5;111mnpm:2.8.8[39m (via [38;5;37mnpm:^2.8.4[39m)
|
|
223
227
|
│ │ ├─ URL: git+https://github.com/prettier/prettier.git
|
|
224
228
|
│ │ ├─ VendorName: James Long
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -1270,19 +1270,32 @@ a.ndl-btn{
|
|
|
1270
1270
|
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
1271
1271
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
1272
1272
|
}
|
|
1273
|
-
.ndl-icon-btn:hover:not(:disabled){
|
|
1273
|
+
.ndl-icon-btn:hover:not(:disabled):not(.ndl-floating){
|
|
1274
1274
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
1275
1275
|
}
|
|
1276
|
-
.ndl-icon-btn:hover:not(:disabled).ndl-danger{
|
|
1276
|
+
.ndl-icon-btn:hover:not(:disabled):not(.ndl-floating).ndl-danger{
|
|
1277
1277
|
background-color:rgb(var(--theme-palette-danger-hover-weak));
|
|
1278
1278
|
}
|
|
1279
|
-
.ndl-icon-btn:
|
|
1280
|
-
|
|
1279
|
+
.ndl-icon-btn.ndl-floating:hover:not(:disabled){
|
|
1280
|
+
background-color:rgb(var(--theme-palette-neutral-bg-default));
|
|
1281
|
+
}
|
|
1282
|
+
.ndl-icon-btn.ndl-floating:hover:not(:disabled).ndl-danger{
|
|
1283
|
+
background-color:rgb(var(--theme-palette-danger-bg-weak));
|
|
1284
|
+
}
|
|
1285
|
+
.ndl-icon-btn:active:not(:disabled):not(.ndl-floating),
|
|
1286
|
+
.ndl-icon-btn.ndl-active:not(.ndl-floating){
|
|
1281
1287
|
background-color:rgb(var(--theme-palette-neutral-pressed));
|
|
1282
1288
|
}
|
|
1283
|
-
.ndl-icon-btn:active:not(:disabled).ndl-danger, .ndl-icon-btn.ndl-active.ndl-danger{
|
|
1289
|
+
.ndl-icon-btn:active:not(:disabled):not(.ndl-floating).ndl-danger, .ndl-icon-btn.ndl-active:not(.ndl-floating).ndl-danger{
|
|
1284
1290
|
background-color:rgb(var(--theme-palette-danger-pressed-weak));
|
|
1285
1291
|
}
|
|
1292
|
+
.ndl-icon-btn.ndl-floating:active:not(:disabled),
|
|
1293
|
+
.ndl-icon-btn.ndl-floating.ndl-active{
|
|
1294
|
+
background-color:rgb(var(--theme-palette-neutral-bg-strong));
|
|
1295
|
+
}
|
|
1296
|
+
.ndl-icon-btn.ndl-floating:active:not(:disabled).ndl-danger, .ndl-icon-btn.ndl-floating.ndl-active.ndl-danger{
|
|
1297
|
+
background-color:rgb(var(--theme-palette-danger-bg-weak));
|
|
1298
|
+
}
|
|
1286
1299
|
.ndl-icon-btn.ndl-loading{
|
|
1287
1300
|
cursor:default;
|
|
1288
1301
|
opacity:0.5;
|
package/lib/tokens/js/tokens.js
CHANGED