@neo4j-ndl/base 0.8.4 → 0.8.6
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,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.8.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 38a8692: add container property to Modal component
|
|
8
|
+
|
|
9
|
+
## 0.8.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ad51925: fix text input placeholder color
|
|
14
|
+
- 36432c7: Removes gap after checkbox if no label is specified
|
|
15
|
+
- 299dccc: fixed css for tag component
|
|
16
|
+
|
|
3
17
|
## 0.8.4
|
|
4
18
|
|
|
5
19
|
### 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 Mon, 24 Oct 2022 09:13:22 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -1802,6 +1802,18 @@ a.ndl-btn{
|
|
|
1802
1802
|
position: relative;
|
|
1803
1803
|
width: 100%;
|
|
1804
1804
|
}
|
|
1805
|
+
.ndl-form-item input::-moz-placeholder{
|
|
1806
|
+
--tw-text-opacity: 1;
|
|
1807
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1808
|
+
}
|
|
1809
|
+
.ndl-form-item input:-ms-input-placeholder{
|
|
1810
|
+
--tw-text-opacity: 1;
|
|
1811
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1812
|
+
}
|
|
1813
|
+
.ndl-form-item input::placeholder{
|
|
1814
|
+
--tw-text-opacity: 1;
|
|
1815
|
+
color: rgb(113 119 128 / var(--tw-text-opacity));
|
|
1816
|
+
}
|
|
1805
1817
|
.ndl-form-item input[type='text'], .ndl-form-item input[type='email'], .ndl-form-item input[type='password'], .ndl-form-item input[type='url']{
|
|
1806
1818
|
height: 2.25rem;
|
|
1807
1819
|
width: 100%;
|
|
@@ -2084,10 +2096,10 @@ a.ndl-btn{
|
|
|
2084
2096
|
border-radius: 4px;
|
|
2085
2097
|
padding-left: 0.5rem;
|
|
2086
2098
|
padding-right: 0.5rem;
|
|
2087
|
-
padding-top: 0.
|
|
2088
|
-
padding-bottom: 0.
|
|
2099
|
+
padding-top: 0.25rem;
|
|
2100
|
+
padding-bottom: 0.25rem;
|
|
2089
2101
|
--tw-bg-opacity: 1;
|
|
2090
|
-
background-color: rgb(
|
|
2102
|
+
background-color: rgb(230 233 238 / var(--tw-bg-opacity));
|
|
2091
2103
|
font-size: var(--font-size-body-medium);
|
|
2092
2104
|
font-weight: var(--font-weight-normal);
|
|
2093
2105
|
letter-spacing: 0.25px;
|
|
@@ -2419,8 +2431,13 @@ a.ndl-btn{
|
|
|
2419
2431
|
bottom: 0;
|
|
2420
2432
|
right: 0;
|
|
2421
2433
|
|
|
2422
|
-
background-color: rgba(0,0,0,0.4);
|
|
2434
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
2423
2435
|
cursor: default;
|
|
2436
|
+
}
|
|
2437
|
+
.ndl-modal-root.ndl-modal-container {
|
|
2438
|
+
position: absolute;
|
|
2439
|
+
}
|
|
2440
|
+
.ndl-modal-root{
|
|
2424
2441
|
z-index: 1000;
|
|
2425
2442
|
}
|
|
2426
2443
|
.ndl-modal {
|
|
@@ -3371,18 +3388,28 @@ a.ndl-btn{
|
|
|
3371
3388
|
.ndl-code-block-container .highlight-wrapper:not(.focused){
|
|
3372
3389
|
overflow-y: hidden;
|
|
3373
3390
|
}
|
|
3374
|
-
/* Component's
|
|
3375
|
-
.ndl-code-block-container .ndl-code-block-
|
|
3391
|
+
/* Component's header */
|
|
3392
|
+
.ndl-code-block-container .ndl-code-block-header{
|
|
3376
3393
|
margin-left: 1rem;
|
|
3377
3394
|
margin-right: 1rem;
|
|
3378
3395
|
margin-top: 1rem;
|
|
3379
3396
|
display: flex;
|
|
3380
|
-
align-items: center;
|
|
3381
3397
|
justify-content: space-between;
|
|
3382
3398
|
}
|
|
3383
|
-
.ndl-code-block-container .ndl-code-block-
|
|
3399
|
+
.ndl-code-block-container .ndl-code-block-header.disabled{
|
|
3384
3400
|
opacity: 0.5;
|
|
3385
3401
|
}
|
|
3402
|
+
.ndl-code-block-container .ndl-code-block-header .ndl-code-block-title{
|
|
3403
|
+
display: flex;
|
|
3404
|
+
align-items: center;
|
|
3405
|
+
}
|
|
3406
|
+
.ndl-code-block-container .ndl-code-block-header .ndl-code-block-title.disabled{
|
|
3407
|
+
pointer-events: none;
|
|
3408
|
+
}
|
|
3409
|
+
/* Component's header icons */
|
|
3410
|
+
.ndl-code-block-container .ndl-code-block-header .ndl-code-block-actions{
|
|
3411
|
+
display: flex;
|
|
3412
|
+
}
|
|
3386
3413
|
.n-sr-only{
|
|
3387
3414
|
position: absolute;
|
|
3388
3415
|
width: 1px;
|
|
@@ -3394,9 +3421,6 @@ a.ndl-btn{
|
|
|
3394
3421
|
white-space: nowrap;
|
|
3395
3422
|
border-width: 0;
|
|
3396
3423
|
}
|
|
3397
|
-
.n-pointer-events-none{
|
|
3398
|
-
pointer-events: none;
|
|
3399
|
-
}
|
|
3400
3424
|
.n-fixed{
|
|
3401
3425
|
position: fixed;
|
|
3402
3426
|
}
|
|
@@ -3406,9 +3430,6 @@ a.ndl-btn{
|
|
|
3406
3430
|
.n-relative{
|
|
3407
3431
|
position: relative;
|
|
3408
3432
|
}
|
|
3409
|
-
.n-left-full{
|
|
3410
|
-
left: 100%;
|
|
3411
|
-
}
|
|
3412
3433
|
.n-top-1{
|
|
3413
3434
|
top: 0.25rem;
|
|
3414
3435
|
}
|
|
@@ -3444,6 +3465,9 @@ a.ndl-btn{
|
|
|
3444
3465
|
.n-mt-7{
|
|
3445
3466
|
margin-top: 1.75rem;
|
|
3446
3467
|
}
|
|
3468
|
+
.n-mt-2{
|
|
3469
|
+
margin-top: 0.5rem;
|
|
3470
|
+
}
|
|
3447
3471
|
.n-mr-1{
|
|
3448
3472
|
margin-right: 0.25rem;
|
|
3449
3473
|
}
|
|
@@ -3486,6 +3510,9 @@ a.ndl-btn{
|
|
|
3486
3510
|
.n-h-6{
|
|
3487
3511
|
height: 1.5rem;
|
|
3488
3512
|
}
|
|
3513
|
+
.n-h-\[400px\]{
|
|
3514
|
+
height: 400px;
|
|
3515
|
+
}
|
|
3489
3516
|
.n-h-full{
|
|
3490
3517
|
height: 100%;
|
|
3491
3518
|
}
|
|
@@ -3522,6 +3549,9 @@ a.ndl-btn{
|
|
|
3522
3549
|
.n-w-6{
|
|
3523
3550
|
width: 1.5rem;
|
|
3524
3551
|
}
|
|
3552
|
+
.n-w-\[400px\]{
|
|
3553
|
+
width: 400px;
|
|
3554
|
+
}
|
|
3525
3555
|
.n-w-32{
|
|
3526
3556
|
width: 8rem;
|
|
3527
3557
|
}
|
|
@@ -3675,6 +3705,9 @@ a.ndl-btn{
|
|
|
3675
3705
|
.n-border-b{
|
|
3676
3706
|
border-bottom-width: 1px;
|
|
3677
3707
|
}
|
|
3708
|
+
.n-border-solid{
|
|
3709
|
+
border-style: solid;
|
|
3710
|
+
}
|
|
3678
3711
|
.n-border-light-neutral-text-weakest{
|
|
3679
3712
|
--tw-border-opacity: 1;
|
|
3680
3713
|
border-color: rgb(178 183 189 / var(--tw-border-opacity));
|
package/lib/tokens/js/tokens.js
CHANGED