@neo4j-ndl/base 1.5.3 → 1.5.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,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.5.5
4
+
5
+ ### Patch Changes
6
+
7
+ - f8daa5a: Fix TextInput focus outline bug
8
+
9
+ ## 1.5.4
10
+
11
+ ### Patch Changes
12
+
13
+ - 9910238: Tabs remove left 1px hack
14
+
3
15
  ## 1.5.3
4
16
 
5
17
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
4
+ * Generated on Thu, 15 Jun 2023 09:22:24 GMT
5
5
  */
6
6
  exports.__esModule = true;
7
7
  exports.tokens = void 0;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
4
+ * Generated on Thu, 15 Jun 2023 09:22:24 GMT
5
5
  */
6
6
  exports.__esModule = true;
7
7
  exports.tokens = void 0;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
4
+ * Generated on Thu, 15 Jun 2023 09:22:23 GMT
5
5
  */
6
6
  module.exports = {
7
7
  "transitions": {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ * Generated on Thu, 15 Jun 2023 09:22:24 GMT
4
4
  */
5
5
  export const tokens = {
6
6
  "transitions": [
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ * Generated on Thu, 15 Jun 2023 09:22:24 GMT
4
4
  */
5
5
  export const tokens = {
6
6
  "transitions": {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
4
+ * Generated on Thu, 15 Jun 2023 09:22:23 GMT
5
5
  */
6
6
  module.exports = {
7
7
  "transitions": {
@@ -459,7 +459,7 @@ video {
459
459
  */
460
460
  /**
461
461
  * Do not edit directly
462
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
462
+ * Generated on Thu, 15 Jun 2023 09:22:23 GMT
463
463
  */
464
464
  :root {
465
465
  --transitions-values-properties-default: all;
@@ -1363,8 +1363,7 @@ a.ndl-btn{
1363
1363
  width: 100%;
1364
1364
  height: 1px;
1365
1365
  bottom: 0px;
1366
- /* Hack to not be visible beneath the bottom blue border */
1367
- left: 1px;
1366
+ left: 0px;
1368
1367
  z-index: 0;
1369
1368
  background-color: rgb(var(--palette-neutral-border-weak));
1370
1369
  }
@@ -1374,8 +1373,7 @@ a.ndl-btn{
1374
1373
  width: 100%;
1375
1374
  height: 2px;
1376
1375
  bottom: 0px;
1377
- /* Hack to not be visible beneath the bottom blue border */
1378
- left: 1px;
1376
+ left: 0px;
1379
1377
  z-index: 0;
1380
1378
  background-color: rgb(var(--palette-neutral-border-weak));
1381
1379
  }
@@ -2008,13 +2006,19 @@ a.ndl-btn{
2008
2006
  .ndl-form-item input[type='url']:active,
2009
2007
  .ndl-form-item input[type='url']:focus{
2010
2008
  outline-style: solid;
2011
- outline-color: rgb(var(--palette-primary-border-strong));
2009
+ outline-width: 2px;
2010
+ outline-offset: -1px;
2011
+ outline-color: rgb(var(--palette-primary-focus));
2012
2012
  }
2013
2013
  .ndl-form-item input[type='text']:disabled, .ndl-form-item input[type='email']:disabled, .ndl-form-item input[type='password']:disabled, .ndl-form-item input[type='url']:disabled{
2014
2014
  cursor: not-allowed;
2015
2015
  color: rgb(var(--palette-neutral-text-weakest));
2016
2016
  background-color: inherit;
2017
2017
  }
2018
+ .ndl-form-item input[type='text']:disabled:active, .ndl-form-item input[type='email']:disabled:active, .ndl-form-item input[type='password']:disabled:active, .ndl-form-item input[type='url']:disabled:active{
2019
+ outline: 2px solid transparent;
2020
+ outline-offset: 2px;
2021
+ }
2018
2022
  /* disabled will also pick up readonly css rule; thats why not disabled */
2019
2023
  .ndl-form-item input[type='text']:-moz-read-only:not(:disabled), .ndl-form-item input[type='email']:-moz-read-only:not(:disabled), .ndl-form-item input[type='password']:-moz-read-only:not(:disabled), .ndl-form-item input[type='url']:-moz-read-only:not(:disabled){
2020
2024
  border-style: none;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ * Generated on Thu, 15 Jun 2023 09:22:23 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ * Generated on Thu, 15 Jun 2023 09:22:23 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ * Generated on Thu, 15 Jun 2023 09:22:24 GMT
4
4
  */
5
5
 
6
6
  export const tokens = {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ // Generated on Thu, 15 Jun 2023 09:22:23 GMT
4
4
 
5
5
  $transitions-values-properties-default: all;
6
6
  $transitions-values-duration-default: 100ms;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 13 Jun 2023 08:26:18 GMT
3
+ * Generated on Thu, 15 Jun 2023 09:22:24 GMT
4
4
  */
5
5
  export const tokens: {
6
6
  transitions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo4j-ndl/base",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "description": "Neo4j base package for the design system",
5
5
  "author": "Neo4j Inc.",
6
6
  "homepage": "",