jcicl 0.0.27 → 0.0.28
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/README.md +4 -0
- package/composite/List/ListButton.js +9 -8
- package/package.json +1 -23
package/README.md
CHANGED
|
@@ -88,3 +88,7 @@ Templates are intended to render the HTML for predefined page layouts comprised
|
|
|
88
88
|
### Publishing the library
|
|
89
89
|
|
|
90
90
|
`npm run bp`
|
|
91
|
+
|
|
92
|
+
- Versions, builds, and publishes the library to the npm registry
|
|
93
|
+
|
|
94
|
+
For more details on scripting commands, please see the [npm CLI documentation](https://docs.npmjs.com/cli/v9/commands)
|
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import { n as
|
|
2
|
-
import
|
|
1
|
+
import { n as o } from "../../.chunks/emotion-styled.browser.esm.js";
|
|
2
|
+
import e from "../../theme.js";
|
|
3
3
|
import { B as n } from "../../.chunks/ButtonBase.js";
|
|
4
|
-
const x =
|
|
4
|
+
const x = o(n)(({ padding: t = "1rem" }) => ({
|
|
5
5
|
width: "100%",
|
|
6
6
|
height: "100%",
|
|
7
|
-
padding:
|
|
7
|
+
padding: t,
|
|
8
8
|
fontSize: "inherit",
|
|
9
9
|
pointerEvents: "all",
|
|
10
|
-
"
|
|
11
|
-
|
|
10
|
+
justifyContent: "flex-start",
|
|
11
|
+
"*": {
|
|
12
|
+
pointerEvents: "none"
|
|
12
13
|
},
|
|
13
14
|
span: {
|
|
14
15
|
transition: "201ms all ease-in-out"
|
|
15
16
|
},
|
|
16
17
|
"&:hover": {
|
|
17
18
|
span: {
|
|
18
|
-
boxShadow: `inset 0px -11px 3px -10px ${
|
|
19
|
+
boxShadow: `inset 0px -11px 3px -10px ${e.colors.green}, inset 0px 11px 3px -10px ${e.colors.green}`
|
|
19
20
|
}
|
|
20
21
|
},
|
|
21
22
|
"&:focus": {
|
|
22
23
|
span: {
|
|
23
|
-
boxShadow: `inset 0px -11px 3px -10px ${
|
|
24
|
+
boxShadow: `inset 0px -11px 3px -10px ${e.colors.darkGreen}, inset 0px 11px 3px -10px ${e.colors.darkGreen}`
|
|
24
25
|
}
|
|
25
26
|
}
|
|
26
27
|
}));
|
package/package.json
CHANGED
|
@@ -1,23 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "jcicl",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.0.27",
|
|
5
|
-
"description": "Component library for the websites of Johnson County Iowa",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"homepage": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@emotion/react": "^11.13.3",
|
|
17
|
-
"@emotion/styled": "^11.13.0",
|
|
18
|
-
"@fontsource/material-icons": "^5.1.0",
|
|
19
|
-
"@fontsource/roboto": "^5.1.0",
|
|
20
|
-
"@mui/icons-material": "^6.1.3",
|
|
21
|
-
"@mui/material": "^6.1.1"
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
{"name":"jcicl","private":false,"version":"0.0.28","description":"Component library for the websites of Johnson County Iowa","license":"MIT","homepage":"https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster","repository":{"type":"git","url":"https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary"},"bugs":{"url":"https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary"},"dependencies":{"@emotion/react":"^11.13.3","@emotion/styled":"^11.13.0","@fontsource/material-icons":"^5.1.0","@fontsource/roboto":"^5.1.0","@mui/icons-material":"^6.1.3","@mui/material":"^6.1.1"}}
|