@eduardoalvarez/arrecife 0.12.0 → 0.12.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/CHANGELOG.md +19 -0
- package/dist/index.cjs +25 -27
- package/dist/index.js +25 -27
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.12.2](https://github.com/Proskynete/arrecife/compare/v0.12.1...v0.12.2) (2026-09-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 📚 Documentación
|
|
7
|
+
|
|
8
|
+
* §§ 65–66, one positioning for the brand and where the avatar is a face ([#80](https://github.com/Proskynete/arrecife/issues/80)) ([40e76c5](https://github.com/Proskynete/arrecife/commit/40e76c5a2323f1c4447bfdac10204acb5cd593b1))
|
|
9
|
+
|
|
10
|
+
## [0.12.1](https://github.com/Proskynete/arrecife/compare/v0.12.0...v0.12.1) (2026-09-17)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 🐛 Correcciones
|
|
14
|
+
|
|
15
|
+
* **components:** the footer signature is a column, so the credit stops pushing the icons ([6760744](https://github.com/Proskynete/arrecife/commit/67607443882b65fae8c7166554075e0ca7b9fe10))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### 📚 Documentación
|
|
19
|
+
|
|
20
|
+
* § 64, the signature is a column of its own ([6be8d1e](https://github.com/Proskynete/arrecife/commit/6be8d1e6cfc8a04bc3c999f672da3cb0d896f4d7))
|
|
21
|
+
|
|
3
22
|
## [0.12.0](https://github.com/Proskynete/arrecife/compare/v0.11.0...v0.12.0) (2026-09-12)
|
|
4
23
|
|
|
5
24
|
|
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
|
-
|
|
3315
|
-
{
|
|
3316
|
-
|
|
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
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
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
|
-
|
|
2540
|
-
{
|
|
2541
|
-
|
|
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
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
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