@neo4j-ndl/base 1.5.1 → 1.5.2
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/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 +25 -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/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -459,7 +459,7 @@ video {
|
|
|
459
459
|
*/
|
|
460
460
|
/**
|
|
461
461
|
* Do not edit directly
|
|
462
|
-
* Generated on Mon,
|
|
462
|
+
* Generated on Mon, 12 Jun 2023 10:06:01 GMT
|
|
463
463
|
*/
|
|
464
464
|
:root {
|
|
465
465
|
--transitions-values-properties-default: all;
|
|
@@ -3802,6 +3802,10 @@ a.ndl-btn{
|
|
|
3802
3802
|
flex-direction: column;
|
|
3803
3803
|
row-gap: 5px;
|
|
3804
3804
|
}
|
|
3805
|
+
.ndl-dropdown .ndl-placeholder{
|
|
3806
|
+
white-space: nowrap;
|
|
3807
|
+
color: rgb(var(--palette-neutral-text-weaker));
|
|
3808
|
+
}
|
|
3805
3809
|
.ndl-dropdown.ndl-fluid{
|
|
3806
3810
|
display: flex;
|
|
3807
3811
|
}
|
|
@@ -3819,6 +3823,23 @@ a.ndl-btn{
|
|
|
3819
3823
|
letter-spacing: 0.016rem;
|
|
3820
3824
|
line-height: 1.25rem;
|
|
3821
3825
|
}
|
|
3826
|
+
.ndl-dropdown.ndl-disabled{
|
|
3827
|
+
cursor: not-allowed;
|
|
3828
|
+
color: rgb(var(--palette-neutral-text-weakest));
|
|
3829
|
+
}
|
|
3830
|
+
.ndl-dropdown.ndl-disabled .ndl-placeholder{
|
|
3831
|
+
color: rgb(var(--palette-neutral-text-weakest));
|
|
3832
|
+
}
|
|
3833
|
+
.ndl-dropdown.ndl-disabled .ndl-sub-text{
|
|
3834
|
+
color: rgb(var(--palette-neutral-text-weakest));
|
|
3835
|
+
}
|
|
3836
|
+
.ndl-dropdown.ndl-disabled label{
|
|
3837
|
+
color: rgb(var(--palette-neutral-text-weakest));
|
|
3838
|
+
font-size: var(--font-size-body-medium);
|
|
3839
|
+
font-weight: var(--font-weight-normal);
|
|
3840
|
+
letter-spacing: 0.016rem;
|
|
3841
|
+
line-height: 1.25rem;
|
|
3842
|
+
}
|
|
3822
3843
|
.ndl-dropdown .ndl-error-text{
|
|
3823
3844
|
color: rgb(var(--palette-danger-text));
|
|
3824
3845
|
}
|
|
@@ -3849,6 +3870,9 @@ a.ndl-btn{
|
|
|
3849
3870
|
height: 1.5rem;
|
|
3850
3871
|
width: 1.5rem;
|
|
3851
3872
|
}
|
|
3873
|
+
.ndl-dropdown .ndl-dropdown-icon.ndl-disabled{
|
|
3874
|
+
color: rgb(var(--palette-neutral-text-weakest));
|
|
3875
|
+
}
|
|
3852
3876
|
.ndl-dropdown .ndl-indicator {
|
|
3853
3877
|
width: 1px;
|
|
3854
3878
|
height: 100%;
|
package/lib/tokens/js/tokens.js
CHANGED