@neo4j-ndl/base 0.8.5 → 0.8.7
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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.8.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 83f91c5: fix dropdown inconsistencies and text input flex gaps
|
|
8
|
+
|
|
9
|
+
## 0.8.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 38a8692: add container property to Modal component
|
|
14
|
+
|
|
3
15
|
## 0.8.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -420,7 +420,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
420
420
|
*/
|
|
421
421
|
/**
|
|
422
422
|
* Do not edit directly
|
|
423
|
-
* Generated on
|
|
423
|
+
* Generated on Thu, 27 Oct 2022 13:26:49 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -1869,7 +1869,7 @@ a.ndl-btn{
|
|
|
1869
1869
|
.ndl-form-item.ndl-type-text .form-item-label{
|
|
1870
1870
|
flex-direction: column-reverse;
|
|
1871
1871
|
align-items: flex-start;
|
|
1872
|
-
row-gap:
|
|
1872
|
+
row-gap: 5px;
|
|
1873
1873
|
}
|
|
1874
1874
|
.ndl-form-item.ndl-type-text .form-item-label .form-label-text{
|
|
1875
1875
|
--tw-text-opacity: 1;
|
|
@@ -2431,8 +2431,13 @@ a.ndl-btn{
|
|
|
2431
2431
|
bottom: 0;
|
|
2432
2432
|
right: 0;
|
|
2433
2433
|
|
|
2434
|
-
background-color: rgba(0,0,0,0.4);
|
|
2434
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
2435
2435
|
cursor: default;
|
|
2436
|
+
}
|
|
2437
|
+
.ndl-modal-root.ndl-modal-container {
|
|
2438
|
+
position: absolute;
|
|
2439
|
+
}
|
|
2440
|
+
.ndl-modal-root{
|
|
2436
2441
|
z-index: 1000;
|
|
2437
2442
|
}
|
|
2438
2443
|
.ndl-modal {
|
|
@@ -3460,6 +3465,9 @@ a.ndl-btn{
|
|
|
3460
3465
|
.n-mt-7{
|
|
3461
3466
|
margin-top: 1.75rem;
|
|
3462
3467
|
}
|
|
3468
|
+
.n-mt-2{
|
|
3469
|
+
margin-top: 0.5rem;
|
|
3470
|
+
}
|
|
3463
3471
|
.n-mr-1{
|
|
3464
3472
|
margin-right: 0.25rem;
|
|
3465
3473
|
}
|
|
@@ -3502,6 +3510,9 @@ a.ndl-btn{
|
|
|
3502
3510
|
.n-h-6{
|
|
3503
3511
|
height: 1.5rem;
|
|
3504
3512
|
}
|
|
3513
|
+
.n-h-\[400px\]{
|
|
3514
|
+
height: 400px;
|
|
3515
|
+
}
|
|
3505
3516
|
.n-h-full{
|
|
3506
3517
|
height: 100%;
|
|
3507
3518
|
}
|
|
@@ -3538,6 +3549,9 @@ a.ndl-btn{
|
|
|
3538
3549
|
.n-w-6{
|
|
3539
3550
|
width: 1.5rem;
|
|
3540
3551
|
}
|
|
3552
|
+
.n-w-\[400px\]{
|
|
3553
|
+
width: 400px;
|
|
3554
|
+
}
|
|
3541
3555
|
.n-w-32{
|
|
3542
3556
|
width: 8rem;
|
|
3543
3557
|
}
|
|
@@ -3691,6 +3705,9 @@ a.ndl-btn{
|
|
|
3691
3705
|
.n-border-b{
|
|
3692
3706
|
border-bottom-width: 1px;
|
|
3693
3707
|
}
|
|
3708
|
+
.n-border-solid{
|
|
3709
|
+
border-style: solid;
|
|
3710
|
+
}
|
|
3694
3711
|
.n-border-light-neutral-text-weakest{
|
|
3695
3712
|
--tw-border-opacity: 1;
|
|
3696
3713
|
border-color: rgb(178 183 189 / var(--tw-border-opacity));
|
package/lib/tokens/js/tokens.js
CHANGED