@planetaexo/design-system 0.57.1 → 0.57.2
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 +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -13700,6 +13700,7 @@ function BlogCard({
|
|
|
13700
13700
|
title,
|
|
13701
13701
|
excerpt,
|
|
13702
13702
|
href,
|
|
13703
|
+
external,
|
|
13703
13704
|
cta,
|
|
13704
13705
|
size = "md",
|
|
13705
13706
|
className
|
|
@@ -13762,6 +13763,8 @@ function BlogCard({
|
|
|
13762
13763
|
onClick: cta == null ? void 0 : cta.onClick,
|
|
13763
13764
|
className: baseClasses,
|
|
13764
13765
|
"aria-label": title,
|
|
13766
|
+
target: external ? "_blank" : void 0,
|
|
13767
|
+
rel: external ? "noopener noreferrer" : void 0,
|
|
13765
13768
|
children: inner
|
|
13766
13769
|
}
|
|
13767
13770
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: baseClasses, children: inner });
|
|
@@ -14072,6 +14075,7 @@ function CategoryPage2({
|
|
|
14072
14075
|
BlogCard,
|
|
14073
14076
|
{
|
|
14074
14077
|
href: post.href,
|
|
14078
|
+
external: post.external,
|
|
14075
14079
|
image: post.image,
|
|
14076
14080
|
imageAlt: post.imageAlt,
|
|
14077
14081
|
title: post.title,
|