@eduardoalvarez/arrecife 0.12.0 → 0.12.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.12.1](https://github.com/Proskynete/arrecife/compare/v0.12.0...v0.12.1) (2026-09-17)
4
+
5
+
6
+ ### 🐛 Correcciones
7
+
8
+ * **components:** the footer signature is a column, so the credit stops pushing the icons ([6760744](https://github.com/Proskynete/arrecife/commit/67607443882b65fae8c7166554075e0ca7b9fe10))
9
+
10
+
11
+ ### 📚 Documentación
12
+
13
+ * § 64, the signature is a column of its own ([6be8d1e](https://github.com/Proskynete/arrecife/commit/6be8d1e6cfc8a04bc3c999f672da3cb0d896f4d7))
14
+
3
15
  ## [0.12.0](https://github.com/Proskynete/arrecife/compare/v0.11.0...v0.12.0) (2026-09-12)
4
16
 
5
17
 
package/dist/index.cjs CHANGED
@@ -3310,16 +3310,10 @@ function SignatureBlock({
3310
3310
  builtWith,
3311
3311
  className
3312
3312
  }) {
3313
- return /* @__PURE__ */ jsxRuntime.jsxs(
3314
- "div",
3315
- {
3316
- className: cn("gap-step-xs flex shrink-0 flex-col items-center sm:items-end", className),
3317
- children: [
3318
- /* @__PURE__ */ jsxRuntime.jsx(Signature, { year, href, domain }),
3319
- builtWith ? /* @__PURE__ */ jsxRuntime.jsx(BuiltWith, {}) : null
3320
- ]
3321
- }
3322
- );
3313
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex shrink-0 flex-col items-center sm:items-end", className), children: [
3314
+ /* @__PURE__ */ jsxRuntime.jsx(Signature, { year, href, domain }),
3315
+ builtWith ? /* @__PURE__ */ jsxRuntime.jsx(BuiltWith, {}) : null
3316
+ ] });
3323
3317
  }
3324
3318
  function Shell({
3325
3319
  className,
@@ -3408,23 +3402,27 @@ function Footer({
3408
3402
  brand2 ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center", children: brand2 }, "brand") : null,
3409
3403
  social && social.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(SocialRow, { social }, "social") : null
3410
3404
  ].filter(Boolean);
3411
- const [first, ...others] = rows;
3412
- return /* @__PURE__ */ jsxRuntime.jsxs(Shell, { className, contentClassName: "gap-step-lg", ...rest, children: [
3413
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "gap-step-md flex flex-col items-center sm:flex-row sm:flex-wrap", children: [
3414
- first ?? null,
3415
- /* @__PURE__ */ jsxRuntime.jsx(
3416
- SignatureBlock,
3417
- {
3418
- year,
3419
- href: signatureHref,
3420
- domain,
3421
- builtWith,
3422
- className: "sm:ml-auto"
3423
- }
3424
- )
3425
- ] }),
3426
- others
3427
- ] });
3405
+ return /* @__PURE__ */ jsxRuntime.jsxs(
3406
+ Shell,
3407
+ {
3408
+ className,
3409
+ contentClassName: "gap-step-lg items-center sm:flex-row sm:items-start",
3410
+ ...rest,
3411
+ children: [
3412
+ rows.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "gap-step-lg flex flex-col items-center sm:items-start", children: rows }) : null,
3413
+ /* @__PURE__ */ jsxRuntime.jsx(
3414
+ SignatureBlock,
3415
+ {
3416
+ year,
3417
+ href: signatureHref,
3418
+ domain,
3419
+ builtWith,
3420
+ className: "sm:ml-auto"
3421
+ }
3422
+ )
3423
+ ]
3424
+ }
3425
+ );
3428
3426
  }
3429
3427
  function Hero({
3430
3428
  title,
package/dist/index.js CHANGED
@@ -2535,16 +2535,10 @@ function SignatureBlock({
2535
2535
  builtWith,
2536
2536
  className
2537
2537
  }) {
2538
- return /* @__PURE__ */ jsxs(
2539
- "div",
2540
- {
2541
- className: cn("gap-step-xs flex shrink-0 flex-col items-center sm:items-end", className),
2542
- children: [
2543
- /* @__PURE__ */ jsx(Signature, { year, href, domain }),
2544
- builtWith ? /* @__PURE__ */ jsx(BuiltWith, {}) : null
2545
- ]
2546
- }
2547
- );
2538
+ return /* @__PURE__ */ jsxs("div", { className: cn("flex shrink-0 flex-col items-center sm:items-end", className), children: [
2539
+ /* @__PURE__ */ jsx(Signature, { year, href, domain }),
2540
+ builtWith ? /* @__PURE__ */ jsx(BuiltWith, {}) : null
2541
+ ] });
2548
2542
  }
2549
2543
  function Shell({
2550
2544
  className,
@@ -2633,23 +2627,27 @@ function Footer({
2633
2627
  brand2 ? /* @__PURE__ */ jsx("div", { className: "flex items-center", children: brand2 }, "brand") : null,
2634
2628
  social && social.length > 0 ? /* @__PURE__ */ jsx(SocialRow, { social }, "social") : null
2635
2629
  ].filter(Boolean);
2636
- const [first, ...others] = rows;
2637
- return /* @__PURE__ */ jsxs(Shell, { className, contentClassName: "gap-step-lg", ...rest, children: [
2638
- /* @__PURE__ */ jsxs("div", { className: "gap-step-md flex flex-col items-center sm:flex-row sm:flex-wrap", children: [
2639
- first ?? null,
2640
- /* @__PURE__ */ jsx(
2641
- SignatureBlock,
2642
- {
2643
- year,
2644
- href: signatureHref,
2645
- domain,
2646
- builtWith,
2647
- className: "sm:ml-auto"
2648
- }
2649
- )
2650
- ] }),
2651
- others
2652
- ] });
2630
+ return /* @__PURE__ */ jsxs(
2631
+ Shell,
2632
+ {
2633
+ className,
2634
+ contentClassName: "gap-step-lg items-center sm:flex-row sm:items-start",
2635
+ ...rest,
2636
+ children: [
2637
+ rows.length > 0 ? /* @__PURE__ */ jsx("div", { className: "gap-step-lg flex flex-col items-center sm:items-start", children: rows }) : null,
2638
+ /* @__PURE__ */ jsx(
2639
+ SignatureBlock,
2640
+ {
2641
+ year,
2642
+ href: signatureHref,
2643
+ domain,
2644
+ builtWith,
2645
+ className: "sm:ml-auto"
2646
+ }
2647
+ )
2648
+ ]
2649
+ }
2650
+ );
2653
2651
  }
2654
2652
  function Hero({
2655
2653
  title,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eduardoalvarez/arrecife",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "The component library of Eduardo Álvarez’s visual identity",
5
5
  "license": "MIT",
6
6
  "author": "Eduardo Esteban Álvarez Castañeda <soy@eduardoalvarez.dev>",