jcicl 0.0.34 → 0.0.36
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/.chunks/DefaultPropsProvider.js +3 -3
- package/animation/ZoomEntrance/ZoomEntrance.d.ts +5 -0
- package/animation/ZoomEntrance/ZoomEntrance.js +23 -0
- package/animation/ZoomEntrance/index.d.ts +1 -0
- package/animation/ZoomEntrance/index.js +4 -0
- package/animation/index.d.ts +1 -0
- package/animation/index.js +4 -0
- package/composite/LogoLoop/LogoLoop.js +15 -31
- package/index.d.ts +1 -0
- package/index.js +24 -22
- package/package.json +1 -1
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { n as ut, s as lt } from "./emotion-styled.browser.esm.js";
|
|
2
2
|
import * as Kr from "react";
|
|
3
3
|
import "react/jsx-runtime";
|
|
4
|
+
function ft(e) {
|
|
5
|
+
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
6
|
+
}
|
|
4
7
|
function pe(e) {
|
|
5
8
|
if (typeof e != "object" || e === null)
|
|
6
9
|
return !1;
|
|
@@ -26,9 +29,6 @@ function ie(e, r, t = {
|
|
|
26
29
|
Object.prototype.hasOwnProperty.call(e, o) && pe(e[o]) ? n[o] = ie(e[o], r[o], t) : t.clone ? n[o] = pe(r[o]) ? Hr(r[o]) : r[o] : n[o] = r[o];
|
|
27
30
|
}), n;
|
|
28
31
|
}
|
|
29
|
-
function ft(e) {
|
|
30
|
-
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
31
|
-
}
|
|
32
32
|
var cr = { exports: {} }, De = { exports: {} }, V = {};
|
|
33
33
|
/** @license React v16.13.1
|
|
34
34
|
* react-is.production.min.js
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const ZoomEntrance: import('@emotion/styled').StyledComponent<{
|
|
2
|
+
theme?: import('@emotion/react').Theme;
|
|
3
|
+
as?: React.ElementType;
|
|
4
|
+
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
5
|
+
export default ZoomEntrance;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { n as e } from "../../.chunks/emotion-styled.browser.esm.js";
|
|
2
|
+
import { c as r } from "../../.chunks/emotion-react.browser.esm.js";
|
|
3
|
+
const s = e("div")({
|
|
4
|
+
...r`
|
|
5
|
+
@keyframes open {
|
|
6
|
+
0% {
|
|
7
|
+
transform: scale(0);
|
|
8
|
+
border-radius: 100%;
|
|
9
|
+
}
|
|
10
|
+
100% {
|
|
11
|
+
transform: scale(1);
|
|
12
|
+
border-radius: 0;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
17
|
+
animation: open 1.3s ease-in-out;
|
|
18
|
+
}
|
|
19
|
+
`
|
|
20
|
+
});
|
|
21
|
+
export {
|
|
22
|
+
s as default
|
|
23
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './ZoomEntrance';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ZoomEntrance } from './ZoomEntrance';
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { n as
|
|
1
|
+
import { jsxs as n, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { n as t } from "../../.chunks/emotion-styled.browser.esm.js";
|
|
3
3
|
import { c as a } from "../../.chunks/emotion-react.browser.esm.js";
|
|
4
|
-
import
|
|
5
|
-
import { l as
|
|
6
|
-
|
|
4
|
+
import e from "../../theme.js";
|
|
5
|
+
import { l as r } from "../../.chunks/jocologo.js";
|
|
6
|
+
import s from "../../animation/ZoomEntrance/ZoomEntrance.js";
|
|
7
|
+
const i = t("img")({
|
|
7
8
|
...a`
|
|
8
9
|
height: 6em;
|
|
9
10
|
padding: 1.5em;
|
|
10
11
|
will-change: filter;
|
|
11
12
|
transition: filter 300ms;
|
|
12
13
|
position: relative;
|
|
13
|
-
filter: drop-shadow(0 0 2em ${
|
|
14
|
+
filter: drop-shadow(0 0 2em ${e.colors.gold}aa);
|
|
14
15
|
|
|
15
16
|
:hover {
|
|
16
|
-
filter: drop-shadow(0 0 2em ${
|
|
17
|
+
filter: drop-shadow(0 0 2em ${e.colors.gold});
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
@keyframes logo-left {
|
|
@@ -43,17 +44,17 @@ const s = r("img")({
|
|
|
43
44
|
animation: logo-left infinite 9s linear;
|
|
44
45
|
}
|
|
45
46
|
`
|
|
46
|
-
}),
|
|
47
|
+
}), l = t("img")({
|
|
47
48
|
...a`
|
|
48
49
|
height: 6em;
|
|
49
50
|
padding: 1.5em;
|
|
50
51
|
will-change: filter;
|
|
51
52
|
transition: filter 300ms;
|
|
52
53
|
position: relative;
|
|
53
|
-
filter: drop-shadow(0 0 2em ${
|
|
54
|
+
filter: drop-shadow(0 0 2em ${e.colors.green}aa);
|
|
54
55
|
|
|
55
56
|
:hover {
|
|
56
|
-
filter: drop-shadow(0 0 2em ${
|
|
57
|
+
filter: drop-shadow(0 0 2em ${e.colors.green});
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
@keyframes logo-right {
|
|
@@ -83,27 +84,10 @@ const s = r("img")({
|
|
|
83
84
|
animation: logo-right infinite 9s linear;
|
|
84
85
|
}
|
|
85
86
|
`
|
|
86
|
-
}),
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
0% {
|
|
90
|
-
transform: scale(0);
|
|
91
|
-
border-radius: 100%;
|
|
92
|
-
}
|
|
93
|
-
100% {
|
|
94
|
-
transform: scale(1);
|
|
95
|
-
border-radius: 0;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
100
|
-
animation: open 1.3s ease-in-out;
|
|
101
|
-
}
|
|
102
|
-
`
|
|
103
|
-
}), h = () => /* @__PURE__ */ t(l, { children: [
|
|
104
|
-
/* @__PURE__ */ e("a", { href: "https://int.johnsoncountyiowa.gov/home", target: "_blank", children: /* @__PURE__ */ e(s, { src: n, className: "logo logo-left", alt: "Johnson County, Iowa logo" }) }),
|
|
105
|
-
/* @__PURE__ */ e("a", { href: "https://int.johnsoncountyiowa.gov/home", target: "_blank", children: /* @__PURE__ */ e(i, { src: n, className: "logo logo-right", alt: "Johnson County, Iowa logo" }) })
|
|
87
|
+
}), p = () => /* @__PURE__ */ n(s, { children: [
|
|
88
|
+
/* @__PURE__ */ o("a", { href: "https://int.johnsoncountyiowa.gov/home", target: "_blank", children: /* @__PURE__ */ o(i, { src: r, className: "logo logo-left", alt: "Johnson County, Iowa logo" }) }),
|
|
89
|
+
/* @__PURE__ */ o("a", { href: "https://int.johnsoncountyiowa.gov/home", target: "_blank", children: /* @__PURE__ */ o(l, { src: r, className: "logo logo-right", alt: "Johnson County, Iowa logo" }) })
|
|
106
90
|
] });
|
|
107
91
|
export {
|
|
108
|
-
|
|
92
|
+
p as default
|
|
109
93
|
};
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,29 +1,31 @@
|
|
|
1
|
-
import { default as e } from "./
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
1
|
+
import { default as e } from "./animation/ZoomEntrance/ZoomEntrance.js";
|
|
2
|
+
import { default as f } from "./base/Avatar/Avatar.js";
|
|
3
|
+
import { AvatarWithImage as m } from "./base/AvatarWithImage/AvatarWithImage.js";
|
|
4
|
+
import { Button as d } from "./base/Button/Button.js";
|
|
5
|
+
import { Divider as s } from "./base/Divider/Divider.js";
|
|
6
|
+
import { default as i } from "./base/Flex/Flex.js";
|
|
7
|
+
import { Grid as L } from "./base/Grid/Grid.js";
|
|
7
8
|
import "./base/Input/Input.js";
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
9
|
+
import { default as A } from "./base/ListButton/ListButton.js";
|
|
10
|
+
import { default as h } from "./composite/List/List.js";
|
|
11
|
+
import { default as W } from "./composite/LogoLoop/LogoLoop.js";
|
|
12
|
+
import { default as c } from "./composite/WithLabel/WithLabel.js";
|
|
13
|
+
import { default as D } from "./supercomposite/AppHeader/AppHeader.js";
|
|
13
14
|
import { Nav as F } from "./supercomposite/Nav/Nav.js";
|
|
14
15
|
import { default as H } from "./templates/AppContainer/AppContainer.js";
|
|
15
16
|
export {
|
|
16
17
|
H as AppContainer,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
18
|
+
D as AppHeader,
|
|
19
|
+
f as Avatar,
|
|
20
|
+
m as AvatarWithImage,
|
|
21
|
+
d as Button,
|
|
22
|
+
s as Divider,
|
|
23
|
+
i as Flex,
|
|
24
|
+
L as Grid,
|
|
25
|
+
h as List,
|
|
26
|
+
A as ListButton,
|
|
27
|
+
W as LogoLoop,
|
|
27
28
|
F as Nav,
|
|
28
|
-
|
|
29
|
+
c as WithLabel,
|
|
30
|
+
e as ZoomEntrance
|
|
29
31
|
};
|
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.36",
|
|
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",
|