@julseb-lib/react 0.0.44 → 0.0.45
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/dist/index.cjs.js +12 -6
- package/dist/index.es.js +1034 -1028
- package/dist/index.umd.js +12 -6
- package/dist/lib/components/Dropdown/styles.tsx +14 -8
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2596,14 +2596,20 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2596
2596
|
color: ${({theme:l,$accentColor:e})=>s.ColorsHoverDefault(e,l)};
|
|
2597
2597
|
${({$gap:l})=>s.Flexbox({$gap:l})}
|
|
2598
2598
|
|
|
2599
|
+
&:disabled {
|
|
2600
|
+
color: ${({theme:l})=>l.GRAY_500};
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2599
2603
|
@media ${E.HOVER} {
|
|
2600
|
-
&:
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
+
&:not(:disabled) {
|
|
2605
|
+
&:hover {
|
|
2606
|
+
background-color: ${({theme:l,$accentColor:e})=>s.ColorsHoverHover(e,l)};
|
|
2607
|
+
color: ${({theme:l})=>l.BACKGROUND};
|
|
2608
|
+
}
|
|
2604
2609
|
|
|
2605
|
-
|
|
2606
|
-
|
|
2610
|
+
&:active {
|
|
2611
|
+
background-color: ${({theme:l,$accentColor:e})=>s.ColorsHoverActive(e,l)};
|
|
2612
|
+
}
|
|
2607
2613
|
}
|
|
2608
2614
|
}
|
|
2609
2615
|
`,b5=m.span`
|