jcicl 0.0.30 → 0.0.31
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/composite/List/ListButton.js +9 -12
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { n as
|
|
2
|
-
import
|
|
3
|
-
import { B as
|
|
4
|
-
const a =
|
|
1
|
+
import { n as p } from "../../.chunks/emotion-styled.browser.esm.js";
|
|
2
|
+
import e from "../../theme.js";
|
|
3
|
+
import { B as s } from "../../.chunks/ButtonBase.js";
|
|
4
|
+
const a = p(s)(({ padding: t = "1rem", active: o, activeStyles: r }) => ({
|
|
5
5
|
display: "flex",
|
|
6
6
|
width: "100%",
|
|
7
7
|
height: "100%",
|
|
@@ -9,15 +9,12 @@ const a = r(x)(({ padding: t = "1rem", active: e, activeStyles: p }) => ({
|
|
|
9
9
|
fontSize: "inherit",
|
|
10
10
|
justifyContent: "flex-start",
|
|
11
11
|
transition: "201ms all ease-in-out",
|
|
12
|
-
...
|
|
13
|
-
boxShadow: `inset 0px -11px 6px -10px ${
|
|
14
|
-
...
|
|
12
|
+
...o && {
|
|
13
|
+
boxShadow: `inset 0px -11px 6px -10px ${e.colors.darkGreen}, inset 0px 11px 6px -10px ${e.colors.darkGreen}`,
|
|
14
|
+
...r
|
|
15
15
|
},
|
|
16
|
-
"&:hover": {
|
|
17
|
-
boxShadow: `inset 0px -11px 6px -10px ${
|
|
18
|
-
},
|
|
19
|
-
"&:focus": {
|
|
20
|
-
boxShadow: `inset 0px -11px 6px -10px ${o.colors.darkGreen}, inset 0px 11px 6px -10px ${o.colors.darkGreen} !important`
|
|
16
|
+
"&:hover, :focus": {
|
|
17
|
+
boxShadow: `inset 0px -11px 6px -10px ${e.colors.green}, inset 0px 11px 6px -10px ${e.colors.green}`
|
|
21
18
|
}
|
|
22
19
|
}));
|
|
23
20
|
export {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jcicl",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.31",
|
|
5
5
|
"description": "Component library for the websites of Johnson County Iowa",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster",
|