@courtneyring/components-library 1.0.2 → 1.0.4
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/animations/FadeInMotion.js +3 -2
- package/dist/assets/Banner.css +1 -1
- package/dist/assets/Button.css +1 -1
- package/dist/assets/Container.css +1 -1
- package/dist/assets/Fifty.css +1 -1
- package/dist/assets/Footer.css +1 -1
- package/dist/assets/GenericOverlay.css +1 -0
- package/dist/assets/IconDetail.css +1 -1
- package/dist/assets/ImageTextBlock.css +1 -1
- package/dist/assets/List.css +1 -1
- package/dist/assets/Navbar.css +1 -1
- package/dist/assets/Note.css +1 -1
- package/dist/assets/Overlay.css +1 -1
- package/dist/assets/OverlayHero.css +1 -1
- package/dist/assets/PageContainer.css +1 -1
- package/dist/assets/PinnedImage.css +1 -1
- package/dist/assets/PromoGroup.css +1 -1
- package/dist/components/Banner/Banner.js +1 -1
- package/dist/components/Button/Button.js +13 -13
- package/dist/components/Container/Container.js +3 -3
- package/dist/components/Fifty/Fifty.js +12 -12
- package/dist/components/Footer/Footer.js +8 -8
- package/dist/components/GenericOverlay/GenericOverlay.js +20 -0
- package/dist/components/IconDetail/IconDetail.js +1 -1
- package/dist/components/ImageTextBlock/ImageTextBlock.js +17 -17
- package/dist/components/List/List.js +13 -13
- package/dist/components/Navbar/Navbar.js +45 -428
- package/dist/components/Note/Note.js +11 -11
- package/dist/components/Overlay/Overlay.js +33 -19
- package/dist/components/OverlayHero/OverlayHero.js +13 -13
- package/dist/components/PageContainer/PageContainer.js +8 -8
- package/dist/components/PinnedImage/PinnedImage.js +24 -30
- package/dist/components/PromoGroup/PromoGroup.js +41 -9
- package/dist/index-DyQs5aC7.js +388 -0
- package/dist/index.js +36 -50
- package/package.json +1 -1
- package/dist/assets/Promo.css +0 -1
- package/dist/assets/index.css +0 -1
- package/dist/components/Promo/Promo.js +0 -33
package/dist/assets/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@media (min-width: 0){._overlay_10zq6_2{padding:40px 20px}}@media (min-width: 390px){._overlay_10zq6_2{padding:40px 30px}}@media (min-width: 768px){._overlay_10zq6_2{padding:30px 50px}}@media (min-width: 1200px){._overlay_10zq6_2{padding:100px}}@media (min-width: 1600px){._overlay_10zq6_2{padding:150px}}._overlay_10zq6_2{color:var(--color-neutral-dark)}@media (min-width: 0){._overlay_10zq6_2 h2{font-family:var(--font-secondary);font-size:36px;line-height:1}}@media (min-width: 0){._overlay_10zq6_2 p{font-size:22px;line-height:1.5}}@media (min-width: 390px){._overlay_10zq6_2 p{font-size:20px}}@media (min-width: 1200px){._overlay_10zq6_2 p{font-size:24px;line-height:1.6}}._ctas_10zq6_54{display:flex;justify-content:space-between}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsxs as i, jsx as o } from "react/jsx-runtime";
|
|
3
|
-
import c from "../Button/Button.js";
|
|
4
|
-
import '../../assets/Promo.css';const d = "_promo_jirwp_1", h = "_image_jirwp_47", x = "_promo__header_jirwp_52", j = "_promo__body_jirwp_79", N = "_stat_jirwp_100", g = "_statText_jirwp_110", a = {
|
|
5
|
-
promo: d,
|
|
6
|
-
image: h,
|
|
7
|
-
promo__header: x,
|
|
8
|
-
promo__body: j,
|
|
9
|
-
stat: N,
|
|
10
|
-
statText: g
|
|
11
|
-
}, w = ({ icon: r, header: e, body: l, cta: s, color: p, stats: t, image: m, textAlign: n }) => /* @__PURE__ */ i(
|
|
12
|
-
s ? "a" : "div",
|
|
13
|
-
{
|
|
14
|
-
className: ` ${a.promo}`,
|
|
15
|
-
href: s?.value,
|
|
16
|
-
"data-color": p,
|
|
17
|
-
"data-text-align": n,
|
|
18
|
-
children: [
|
|
19
|
-
r && /* @__PURE__ */ o("span", { className: "material-symbols-outlined", children: r }),
|
|
20
|
-
m && /* @__PURE__ */ o("img", { className: a.image, src: m }),
|
|
21
|
-
e && /* @__PURE__ */ o("h3", { className: a.promo__header, children: e }),
|
|
22
|
-
/* @__PURE__ */ o("p", { className: a.promo__body, children: l }),
|
|
23
|
-
s && /* @__PURE__ */ o(c, { ...s }),
|
|
24
|
-
t && t.map((_) => /* @__PURE__ */ i("div", { className: a.stat, children: [
|
|
25
|
-
/* @__PURE__ */ o("span", { className: "material-symbols-outlined", children: _.icon }),
|
|
26
|
-
/* @__PURE__ */ o("span", { className: a.statText, children: _.text })
|
|
27
|
-
] }))
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
);
|
|
31
|
-
export {
|
|
32
|
-
w as default
|
|
33
|
-
};
|