@salesmind-ai/design-system 0.3.0 → 0.3.1
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 +32 -2
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +11 -7
- package/dist/index.css.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/nav/index.cjs +1 -1
- package/dist/nav/index.cjs.map +1 -1
- package/dist/nav/index.js +1 -1
- package/dist/nav/index.js.map +1 -1
- package/dist/sections/index.css +1 -4
- package/dist/sections/index.css.map +1 -1
- package/dist/social-proof/index.cjs +2 -1
- package/dist/social-proof/index.cjs.map +1 -1
- package/dist/social-proof/index.css +10 -3
- package/dist/social-proof/index.css.map +1 -1
- package/dist/social-proof/index.js +2 -1
- package/dist/social-proof/index.js.map +1 -1
- package/dist/web/client/index.cjs +501 -0
- package/dist/web/client/index.cjs.map +1 -0
- package/dist/web/client/index.css +456 -0
- package/dist/web/client/index.css.map +1 -0
- package/dist/web/client/index.d.cts +172 -0
- package/dist/web/client/index.d.ts +172 -0
- package/dist/web/client/index.js +486 -0
- package/dist/web/client/index.js.map +1 -0
- package/dist/web/index.d.cts +5 -893
- package/dist/web/index.d.ts +5 -893
- package/dist/web/server/index.cjs +569 -0
- package/dist/web/server/index.cjs.map +1 -0
- package/dist/web/server/index.d.cts +725 -0
- package/dist/web/server/index.d.ts +725 -0
- package/dist/web/server/index.js +562 -0
- package/dist/web/server/index.js.map +1 -0
- package/package.json +14 -1
package/dist/index.js
CHANGED
|
@@ -3429,7 +3429,7 @@ var SiteFooter = forwardRef(
|
|
|
3429
3429
|
className: "ds-footer__column",
|
|
3430
3430
|
"data-footer-section": section.title.toLowerCase().replace(/\s+/g, "-"),
|
|
3431
3431
|
children: [
|
|
3432
|
-
/* @__PURE__ */ jsx("
|
|
3432
|
+
/* @__PURE__ */ jsx("p", { className: "ds-footer__heading", children: section.title }),
|
|
3433
3433
|
/* @__PURE__ */ jsx("ul", { className: "ds-footer__links", children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
|
|
3434
3434
|
LinkComponent,
|
|
3435
3435
|
{
|
|
@@ -3721,6 +3721,7 @@ var PlatformBadge = forwardRef(
|
|
|
3721
3721
|
"div",
|
|
3722
3722
|
{
|
|
3723
3723
|
ref,
|
|
3724
|
+
role: "img",
|
|
3724
3725
|
className: clsx21(
|
|
3725
3726
|
"ds-platform-badge",
|
|
3726
3727
|
`ds-platform-badge--${variant}`,
|
|
@@ -4266,7 +4267,7 @@ var SocialProofLogos = forwardRef(
|
|
|
4266
4267
|
...props,
|
|
4267
4268
|
children: [
|
|
4268
4269
|
title && /* @__PURE__ */ jsx(
|
|
4269
|
-
"
|
|
4270
|
+
"p",
|
|
4270
4271
|
{
|
|
4271
4272
|
className: "ds-section-header__eyebrow",
|
|
4272
4273
|
style: { textAlign: "center", marginBottom: "var(--space-8)" },
|