@neo4j-ndl/base 3.0.7 → 3.0.9
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +5 -4
- 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/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -2651,12 +2651,15 @@ a.ndl-btn {
|
|
|
2651
2651
|
letter-spacing:0.016rem;
|
|
2652
2652
|
line-height:1.25rem;
|
|
2653
2653
|
}
|
|
2654
|
-
.ndl-datepicker .react-datepicker-wrapper {
|
|
2654
|
+
.ndl-datepicker .react-datepicker-wrapper:has(.ndl-fluid) {
|
|
2655
2655
|
width:auto;
|
|
2656
2656
|
}
|
|
2657
|
+
.ndl-datepicker .react-datepicker-wrapper {
|
|
2658
|
+
width:-moz-fit-content;
|
|
2659
|
+
width:fit-content;
|
|
2660
|
+
}
|
|
2657
2661
|
.ndl-datepicker .react-datepicker-popper {
|
|
2658
2662
|
z-index:10;
|
|
2659
|
-
margin-top:4px;
|
|
2660
2663
|
display:flex;
|
|
2661
2664
|
width:320px;
|
|
2662
2665
|
align-items:center;
|
|
@@ -6508,8 +6511,6 @@ button.ndl-avatar:focus-visible {
|
|
|
6508
6511
|
border-width:1px;
|
|
6509
6512
|
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
6510
6513
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
6511
|
-
width:-moz-fit-content;
|
|
6512
|
-
width:fit-content;
|
|
6513
6514
|
}
|
|
6514
6515
|
.ndl-text-input .ndl-input-wrapper:has(input:focus) {
|
|
6515
6516
|
outline-style:solid;
|
package/lib/tokens/js/tokens.js
CHANGED