Added pictures for CEOAS, formatting fixes, new work to dictionary
All checks were successful
Build and Test - Staging / test (pull_request) Successful in 4m6s
Build and Test - Staging / build_and_push (pull_request) Successful in 4m6s
Build and Test - Staging / deploy_staging (pull_request) Successful in 3s

This commit is contained in:
2025-11-30 19:44:24 -08:00
parent 4a59e44716
commit 91cd9af0f8
27 changed files with 108 additions and 40 deletions

View File

@@ -60,16 +60,14 @@ class CustomCarousel extends HTMLElement {
indicators: {
activeClasses: "border-2 border-caperren-green bg-black",
inactiveClasses: "bg-caperren-green/40 hover:bg-caperren-green-light",
items: Array.from(customIndicators).map(
(item): IndicatorItem => {
return {
el: item as HTMLElement,
position: Number(
item.getAttribute("data-custom-carousel-slide-to"),
),
};
},
),
items: Array.from(customIndicators).map((item): IndicatorItem => {
return {
el: item as HTMLElement,
position: Number(
item.getAttribute("data-custom-carousel-slide-to"),
),
};
}),
},
};
};