@eleven-labs/design-system 0.26.0 → 0.26.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/components/Molecules/Blocks/CategoryEndingBlock/CategoryEndingBlock.d.ts +1 -1
- package/dist/constants/tokenVariables.d.ts +1 -1
- package/dist/index.es.js +4 -4
- package/dist/index.umd.cjs +2 -2
- package/dist/pages/HomePage/HomePage.d.ts +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
|
4
4
|
export interface CategoryEndingBlockProps extends BoxProps {
|
|
5
5
|
title: React.ReactNode;
|
|
6
6
|
description: React.ReactNode;
|
|
7
|
-
expertiseLink
|
|
7
|
+
expertiseLink?: {
|
|
8
8
|
label: string;
|
|
9
9
|
} & ComponentPropsWithoutRef<'a'>;
|
|
10
10
|
}
|
package/dist/index.es.js
CHANGED
|
@@ -4798,12 +4798,12 @@ const ns = ({
|
|
|
4798
4798
|
) }), rs = ({
|
|
4799
4799
|
title: e,
|
|
4800
4800
|
description: t,
|
|
4801
|
-
expertiseLink: { label: n, ...i },
|
|
4801
|
+
expertiseLink: { label: n, ...i } = {},
|
|
4802
4802
|
...o
|
|
4803
4803
|
}) => /* @__PURE__ */ M(V, { ...o, children: [
|
|
4804
4804
|
/* @__PURE__ */ s(Z, { size: "m", fontWeight: "bold", children: e }),
|
|
4805
4805
|
/* @__PURE__ */ s(Z, { mt: "m", children: t }),
|
|
4806
|
-
/* @__PURE__ */ s(Ke, { as: "a", mt: "l", ...i, children: n })
|
|
4806
|
+
n && /* @__PURE__ */ s(Ke, { as: "a", mt: "l", ...i, children: n })
|
|
4807
4807
|
] });
|
|
4808
4808
|
const Cc = ["primary", "secondary"], lt = ({
|
|
4809
4809
|
variant: e,
|
|
@@ -5032,7 +5032,7 @@ const Ac = ["horizontal", "vertical"], ut = ({
|
|
|
5032
5032
|
/* @__PURE__ */ s(Ee, { name: "underline", color: "accent", width: "56px" }),
|
|
5033
5033
|
/* @__PURE__ */ s(Z, { mt: "m", children: t })
|
|
5034
5034
|
] }),
|
|
5035
|
-
/* @__PURE__ */ s(V, { children: n })
|
|
5035
|
+
/* @__PURE__ */ s(V, { className: "newsletter-card__form", children: n })
|
|
5036
5036
|
]
|
|
5037
5037
|
}
|
|
5038
5038
|
), o0 = -1, y0 = (e, t) => {
|
|
@@ -7910,7 +7910,7 @@ const dc = ({
|
|
|
7910
7910
|
}) => /* @__PURE__ */ M(Pe, { children: [
|
|
7911
7911
|
/* @__PURE__ */ s(ns, { ...e }),
|
|
7912
7912
|
/* @__PURE__ */ s(uc, { ...t }),
|
|
7913
|
-
/* @__PURE__ */ s(dc, { ...n }),
|
|
7913
|
+
n && /* @__PURE__ */ s(dc, { ...n }),
|
|
7914
7914
|
/* @__PURE__ */ s(V, { my: "xl", mx: { xs: "s", md: "auto" }, width: { md: "content-container" }, children: /* @__PURE__ */ s(ut, { variant: "horizontal", ...i }) })
|
|
7915
7915
|
] });
|
|
7916
7916
|
const fc = ({ title: e, authors: t, ...n }) => /* @__PURE__ */ M(V, { ...n, children: [
|