@neo4j-ndl/base 0.15.0 → 0.15.1
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 +6 -0
- package/lib/neo4j-ds-styles.css +2 -3
- package/lib/optimised.config.d.ts +2 -1
- package/lib/optimised.config.js +6 -4
- package/lib/optimised.config.js.map +1 -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/package.json +1 -1
package/CHANGELOG.md
CHANGED
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 Thu,
|
|
423
|
+
* Generated on Thu, 15 Dec 2022 11:07:30 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -2463,7 +2463,7 @@ a.ndl-btn{
|
|
|
2463
2463
|
position: absolute;
|
|
2464
2464
|
}
|
|
2465
2465
|
.ndl-modal-root{
|
|
2466
|
-
z-index:
|
|
2466
|
+
z-index: 1100;
|
|
2467
2467
|
}
|
|
2468
2468
|
.ndl-modal {
|
|
2469
2469
|
position: relative;
|
|
@@ -2474,7 +2474,6 @@ a.ndl-btn{
|
|
|
2474
2474
|
margin: 32px;
|
|
2475
2475
|
width: -moz-available;
|
|
2476
2476
|
width: -webkit-fill-available;
|
|
2477
|
-
z-index: 1001;
|
|
2478
2477
|
}
|
|
2479
2478
|
.ndl-modal.small {
|
|
2480
2479
|
max-width: 40rem;
|
package/lib/optimised.config.js
CHANGED
|
@@ -30,6 +30,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
30
30
|
};
|
|
31
31
|
return __assign.apply(this, arguments);
|
|
32
32
|
};
|
|
33
|
+
var _a;
|
|
33
34
|
var tailwindConfig = require('./tailwindConfig.js');
|
|
34
35
|
/**
|
|
35
36
|
* Tailwind CSS Configuration
|
|
@@ -66,10 +67,11 @@ module.exports = {
|
|
|
66
67
|
transparent: 'transparent',
|
|
67
68
|
current: 'currentColor'
|
|
68
69
|
},
|
|
69
|
-
zIndex: {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
zIndex: (_a = {},
|
|
71
|
+
_a['popover-backdrop'] = 1000,
|
|
72
|
+
_a.popover = 1001,
|
|
73
|
+
_a.modal = 1100,
|
|
74
|
+
_a)
|
|
73
75
|
} }),
|
|
74
76
|
// Enable only necessary plugins
|
|
75
77
|
// https://tailwindcss.com/docs/configuration#core-plugins
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"optimised.config.js","sourceRoot":"","sources":["../src/optimised.config.js"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG
|
|
1
|
+
{"version":3,"file":"optimised.config.js","sourceRoot":"","sources":["../src/optimised.config.js"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;;;;;;;;AAEH,IAAM,cAAc,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;AAEtD;;;;GAIG;AACH,MAAM,CAAC,OAAO,GAAG;IACf,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,CAAC,kCAAkC,CAAC;IAC7C,mEAAmE;IACnE,qDAAqD;IACrD,iDAAiD;IACjD,QAAQ,EAAE;QACR;YACE,OAAO,EACL,iFAAiF;YACnF,QAAQ,EAAE,CAAC,OAAO,CAAC;SACpB;QACD;YACE,OAAO,EACL,+EAA+E;YACjF,QAAQ,EAAE,CAAC,OAAO,CAAC;SACpB;QACD;YACE,sBAAsB;YACtB,OAAO,EAAE,wBAAwB;YACjC,QAAQ,EAAE,CAAC,QAAQ,CAAC;SACrB;QACD;YACE,OAAO,EAAE,2BAA2B;YACpC,QAAQ,EAAE,CAAC,OAAO,CAAC;SACpB;KACF;IACD,KAAK,wBACA,cAAc,KACjB,MAAM,EAAE;YACN,MAAM,EAAE;gBACN,WAAW,EAAE,aAAa;gBAC1B,OAAO,EAAE,cAAc;aACxB;YACD,MAAM;gBACJ,GAAC,kBAAkB,IAAG,IAAI;gBAC1B,UAAO,GAAE,IAAI;gBACb,QAAK,GAAE,IAAI;mBACZ;SACF,GACF;IACD,gCAAgC;IAChC,0DAA0D;IAC1D,OAAO,EAAE,EAAE;CACZ,CAAC"}
|
package/lib/tokens/js/tokens.js
CHANGED