@neo4j-ndl/base 1.1.2 → 1.2.1
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/NOTICE.txt +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/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +17 -2
- 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/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2e5ee6f: Center table cell content to work better with large content
|
|
8
|
+
|
|
9
|
+
## 1.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- eb2f19c: add Subheader component to Context Menu
|
|
14
|
+
|
|
3
15
|
## 1.1.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/NOTICE.txt
CHANGED
|
@@ -236,7 +236,7 @@ Third-party licenses
|
|
|
236
236
|
│ │ ├─ URL: https://github.com/que-etc/resize-observer-polyfill.git
|
|
237
237
|
│ │ ├─ VendorName: Denis Rul
|
|
238
238
|
│ │ └─ VendorUrl: https://github.com/que-etc/resize-observer-polyfill
|
|
239
|
-
│ ├─ [38;5;173mstorybook[39m[38;5;111m@[39m[38;5;111mnpm:7.0.
|
|
239
|
+
│ ├─ [38;5;173mstorybook[39m[38;5;111m@[39m[38;5;111mnpm:7.0.6[39m (via [38;5;37mnpm:^7.0.6[39m)
|
|
240
240
|
│ │ ├─ URL: https://github.com/storybookjs/storybook.git
|
|
241
241
|
│ │ └─ VendorUrl: https://github.com/storybookjs/storybook/tree/main/lib/cli
|
|
242
242
|
│ ├─ [38;5;173mstorybook-addon-pseudo-states[39m[38;5;111m@[39m[38;5;111mnpm:1.15.2 [d75d7][39m (via [38;5;37mnpm:^1.15.1 [d75d7][39m)
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -459,7 +459,7 @@ video {
|
|
|
459
459
|
*/
|
|
460
460
|
/**
|
|
461
461
|
* Do not edit directly
|
|
462
|
-
* Generated on Tue,
|
|
462
|
+
* Generated on Tue, 25 Apr 2023 11:19:03 GMT
|
|
463
463
|
*/
|
|
464
464
|
:root {
|
|
465
465
|
--transitions-values-properties-default: all;
|
|
@@ -2443,6 +2443,20 @@ a.ndl-btn{
|
|
|
2443
2443
|
height: 17px;
|
|
2444
2444
|
cursor: pointer;
|
|
2445
2445
|
}
|
|
2446
|
+
.ndl-menu .ndl-menu-subheader{
|
|
2447
|
+
margin-bottom: 0.5rem;
|
|
2448
|
+
padding-left: 0.5rem;
|
|
2449
|
+
padding-right: 0.5rem;
|
|
2450
|
+
padding-top: 0.5rem;
|
|
2451
|
+
}
|
|
2452
|
+
.ndl-menu .ndl-menu-subheader .ndl-menu-subheader-title{
|
|
2453
|
+
--tw-text-opacity: 1;
|
|
2454
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
2455
|
+
font-size: var(--font-size-body-medium);
|
|
2456
|
+
font-weight: var(--font-weight-normal);
|
|
2457
|
+
letter-spacing: 0.016rem;
|
|
2458
|
+
line-height: 1.25rem;
|
|
2459
|
+
}
|
|
2446
2460
|
/**
|
|
2447
2461
|
*
|
|
2448
2462
|
* Copyright (c) "Neo4j"
|
|
@@ -2954,8 +2968,9 @@ a.ndl-btn{
|
|
|
2954
2968
|
.ndl-table-root .ndl-div-table .ndl-table-td {
|
|
2955
2969
|
padding: 10px 24px;
|
|
2956
2970
|
position: relative;
|
|
2957
|
-
display:
|
|
2971
|
+
display: flex;
|
|
2958
2972
|
height: 100%;
|
|
2973
|
+
align-items: center;
|
|
2959
2974
|
overflow: hidden;
|
|
2960
2975
|
text-overflow: ellipsis;
|
|
2961
2976
|
white-space: pre-line;
|
package/lib/tokens/js/tokens.js
CHANGED