@theguild/components 9.8.0-alpha-20250709145129-07dac296a1234e48cb183e6ee2f250fbb77bf699 → 9.8.0-alpha-20250709174027-88437a8d3cf466bef72b23fdf5d276cfaec9510d

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.
@@ -14,9 +14,9 @@ type HiveFooterProps = {
14
14
  /**
15
15
  * In case this component is used outside of Hive Platform in a design-consistent but less related context,
16
16
  */
17
- hideSecurityBadges?: boolean;
17
+ showSecurityBadges?: boolean;
18
18
  };
19
- declare function HiveFooter({ className, logo, href, description, items, hideSecurityBadges, }: HiveFooterProps): react_jsx_runtime.JSX.Element;
19
+ declare function HiveFooter({ className, logo, href, description, items, showSecurityBadges, }: HiveFooterProps): react_jsx_runtime.JSX.Element;
20
20
  declare namespace HiveFooter {
21
21
  var DEFAULT_ITEMS: HiveFooterItems;
22
22
  }
@@ -21,7 +21,7 @@ function HiveFooter({
21
21
  href = `${siteOrigin}/`,
22
22
  description = "Open-source GraphQL management platform",
23
23
  items,
24
- hideSecurityBadges
24
+ showSecurityBadges
25
25
  }) {
26
26
  items = { ...HiveFooter.DEFAULT_ITEMS, ...items };
27
27
  return /* @__PURE__ */ jsxs(
@@ -66,7 +66,7 @@ function HiveFooter({
66
66
  )),
67
67
  /* @__PURE__ */ jsx(ContactTextLink, {})
68
68
  ] }),
69
- /* @__PURE__ */ jsx("div", { className: "sm:col-start-[-1] lg:col-start-[-2]", children: !hideSecurityBadges && /* @__PURE__ */ jsx(SecurityBadges, {}) })
69
+ /* @__PURE__ */ jsx("div", { className: "sm:col-start-[-1] lg:col-start-[-2]", children: showSecurityBadges && /* @__PURE__ */ jsx(SecurityBadges, {}) })
70
70
  ] }),
71
71
  /* @__PURE__ */ jsxs("div", { className: "col-span-full flex flex-wrap justify-between gap-x-[inherit] gap-y-8 lg:w-full lg:pb-2 lg:pt-8", children: [
72
72
  /* @__PURE__ */ jsx("div", { className: "flex gap-6 lg:order-1", children: SOCIAL_ICONS.map(({ icon: Icon, ...iconProps }) => /* @__PURE__ */ jsx(
@@ -13,7 +13,7 @@ function SecurityBadge({
13
13
  target: "_blank",
14
14
  rel: "noreferrer noopener",
15
15
  className: cn(
16
- "hive-focus h-fit w-fit rounded-full p-1 hover:bg-blue-200 focus-visible:outline-none focus-visible:ring-offset-2 focus-visible:ring-offset-[rgb(var(--nextra-bg))] dark:hover:bg-white/20 dark:hover:*:opacity-100",
16
+ "hive-focus size-fit rounded-full p-1 hover:bg-blue-200 focus-visible:outline-none focus-visible:ring-offset-2 focus-visible:ring-offset-[rgb(var(--nextra-bg))] dark:hover:bg-white/20 dark:hover:*:opacity-100",
17
17
  className
18
18
  ),
19
19
  children
@@ -27,6 +27,7 @@ function SecurityBadges() {
27
27
  "img",
28
28
  {
29
29
  src: "https://static.vanta.com/static/soc2_badge.ac7ad1ad.webp",
30
+ alt: "AICPA SOC 2",
30
31
  className: "size-[88px] dark:opacity-95"
31
32
  }
32
33
  ) })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theguild/components",
3
- "version": "9.8.0-alpha-20250709145129-07dac296a1234e48cb183e6ee2f250fbb77bf699",
3
+ "version": "9.8.0-alpha-20250709174027-88437a8d3cf466bef72b23fdf5d276cfaec9510d",
4
4
  "repository": {
5
5
  "url": "https://github.com/the-guild-org/docs",
6
6
  "directory": "packages/components"