@neo4j-ndl/base 1.8.1 → 1.8.3
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/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 +24 -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
|
+
## 1.8.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9fc2af0: Fix table body height so it matches parent
|
|
8
|
+
|
|
9
|
+
## 1.8.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2204c66: fix the important Tailwind token gets disregarded
|
|
14
|
+
|
|
3
15
|
## 1.8.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/NOTICE.txt
CHANGED
|
@@ -85,7 +85,7 @@ Third-party licenses
|
|
|
85
85
|
│ │ ├─ URL: https://github.com/gregberge/svgr/tree/main/packages/cli
|
|
86
86
|
│ │ ├─ VendorName: Greg Bergé
|
|
87
87
|
│ │ └─ VendorUrl: https://react-svgr.com
|
|
88
|
-
│ ├─ [38;5;166m@tanstack/[39m[38;5;173mreact-table[39m[38;5;111m@[39m[38;5;111mnpm:8.9.
|
|
88
|
+
│ ├─ [38;5;166m@tanstack/[39m[38;5;173mreact-table[39m[38;5;111m@[39m[38;5;111mnpm:8.9.3 [a2e03][39m (via [38;5;37mnpm:^8.9.3 [a2e03][39m)
|
|
89
89
|
│ │ ├─ URL: git+https://github.com/tanstack/table.git
|
|
90
90
|
│ │ ├─ VendorName: Tanner Linsley
|
|
91
91
|
│ │ └─ VendorUrl: https://github.com/tanstack/table#readme
|
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 Mon,
|
|
462
|
+
* Generated on Mon, 10 Jul 2023 14:22:19 GMT
|
|
463
463
|
*/
|
|
464
464
|
:root {
|
|
465
465
|
--transitions-values-properties-default: all;
|
|
@@ -3267,7 +3267,12 @@ a.ndl-btn{
|
|
|
3267
3267
|
overflow: hidden;
|
|
3268
3268
|
background-color: rgb(var(--palette-neutral-bg-weak));
|
|
3269
3269
|
}
|
|
3270
|
+
.ndl-table-root .ndl-table-x-scrollable {
|
|
3271
|
+
overflow-x: auto;
|
|
3272
|
+
overflow-y: hidden !important;
|
|
3273
|
+
}
|
|
3270
3274
|
.ndl-table-root .ndl-div-table{
|
|
3275
|
+
height: 100%;
|
|
3271
3276
|
width: -moz-max-content;
|
|
3272
3277
|
width: max-content;
|
|
3273
3278
|
min-width: 100%;
|
|
@@ -4250,6 +4255,24 @@ a.ndl-btn{
|
|
|
4250
4255
|
align-items: center;
|
|
4251
4256
|
justify-content: space-between;
|
|
4252
4257
|
}
|
|
4258
|
+
.ndl-widget .ndl-header-wrapper .ndl-header{
|
|
4259
|
+
--tw-text-opacity: 1;
|
|
4260
|
+
color: rgb(21 30 41 / var(--tw-text-opacity));
|
|
4261
|
+
}
|
|
4262
|
+
|
|
4263
|
+
.ndl-widget .ndl-header-wrapper .ndl-header {
|
|
4264
|
+
font-size: var(--font-size-h6);
|
|
4265
|
+
font-weight: var(--font-weight-bold);
|
|
4266
|
+
letter-spacing: 0.016rem;
|
|
4267
|
+
line-height: 1.5rem;
|
|
4268
|
+
}
|
|
4269
|
+
.ndl-widget .ndl-header-wrapper .ndl-subheader{
|
|
4270
|
+
color: rgb(var(--palette-neutral-text-weak));
|
|
4271
|
+
font-size: var(--font-size-body-medium);
|
|
4272
|
+
font-weight: var(--font-weight-normal);
|
|
4273
|
+
letter-spacing: 0.016rem;
|
|
4274
|
+
line-height: 1.25rem;
|
|
4275
|
+
}
|
|
4253
4276
|
.ndl-widget .ndl-header-wrapper .ndl-header-left{
|
|
4254
4277
|
display: flex;
|
|
4255
4278
|
align-items: flex-start;
|
package/lib/tokens/js/tokens.js
CHANGED