@neo4j-ndl/base 0.8.4 → 0.8.5

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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.8.5
4
+
5
+ ### Patch Changes
6
+
7
+ - ad51925: fix text input placeholder color
8
+ - 36432c7: Removes gap after checkbox if no label is specified
9
+ - 299dccc: fixed css for tag component
10
+
3
11
  ## 0.8.4
4
12
 
5
13
  ### Patch Changes
@@ -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 Tue, 04 Oct 2022 09:34:59 GMT
423
+ * Generated on Fri, 14 Oct 2022 09:54:46 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.5rem;
2088
- padding-bottom: 0.5rem;
2099
+ padding-top: 0.25rem;
2100
+ padding-bottom: 0.25rem;
2089
2101
  --tw-bg-opacity: 1;
2090
- background-color: rgb(238 241 246 / var(--tw-bg-opacity));
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;
@@ -3371,18 +3383,28 @@ a.ndl-btn{
3371
3383
  .ndl-code-block-container .highlight-wrapper:not(.focused){
3372
3384
  overflow-y: hidden;
3373
3385
  }
3374
- /* Component's title */
3375
- .ndl-code-block-container .ndl-code-block-title{
3386
+ /* Component's header */
3387
+ .ndl-code-block-container .ndl-code-block-header{
3376
3388
  margin-left: 1rem;
3377
3389
  margin-right: 1rem;
3378
3390
  margin-top: 1rem;
3379
3391
  display: flex;
3380
- align-items: center;
3381
3392
  justify-content: space-between;
3382
3393
  }
3383
- .ndl-code-block-container .ndl-code-block-title.disabled{
3394
+ .ndl-code-block-container .ndl-code-block-header.disabled{
3384
3395
  opacity: 0.5;
3385
3396
  }
3397
+ .ndl-code-block-container .ndl-code-block-header .ndl-code-block-title{
3398
+ display: flex;
3399
+ align-items: center;
3400
+ }
3401
+ .ndl-code-block-container .ndl-code-block-header .ndl-code-block-title.disabled{
3402
+ pointer-events: none;
3403
+ }
3404
+ /* Component's header icons */
3405
+ .ndl-code-block-container .ndl-code-block-header .ndl-code-block-actions{
3406
+ display: flex;
3407
+ }
3386
3408
  .n-sr-only{
3387
3409
  position: absolute;
3388
3410
  width: 1px;
@@ -3394,9 +3416,6 @@ a.ndl-btn{
3394
3416
  white-space: nowrap;
3395
3417
  border-width: 0;
3396
3418
  }
3397
- .n-pointer-events-none{
3398
- pointer-events: none;
3399
- }
3400
3419
  .n-fixed{
3401
3420
  position: fixed;
3402
3421
  }
@@ -3406,9 +3425,6 @@ a.ndl-btn{
3406
3425
  .n-relative{
3407
3426
  position: relative;
3408
3427
  }
3409
- .n-left-full{
3410
- left: 100%;
3411
- }
3412
3428
  .n-top-1{
3413
3429
  top: 0.25rem;
3414
3430
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 04 Oct 2022 09:34:59 GMT
3
+ * Generated on Fri, 14 Oct 2022 09:54:46 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 04 Oct 2022 09:34:59 GMT
3
+ * Generated on Fri, 14 Oct 2022 09:54:46 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 04 Oct 2022 09:34:59 GMT
4
+ * Generated on Fri, 14 Oct 2022 09:54:46 GMT
5
5
  */
6
6
  module.exports = {
7
7
  "borderRadius": {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 04 Oct 2022 09:34:59 GMT
3
+ // Generated on Fri, 14 Oct 2022 09:54:46 GMT
4
4
 
5
5
  $border-radius-sm: 4px;
6
6
  $border-radius-md: 6px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-ndl/base",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "Neo4j base package for the design system",
5
5
  "author": "Neo4j Inc.",
6
6
  "homepage": "",