add new grid carousels

This commit is contained in:
jeffvli
2025-11-15 19:24:31 -08:00
parent 60cc564743
commit 2fc14ecd0e
18 changed files with 843 additions and 1130 deletions
+3 -1
View File
@@ -21,5 +21,7 @@ export const useContainerQuery = (props?: UseContainerQueryProps) => {
const is2xl = width >= (xxl || 1920);
const is3xl = width >= (xxxl || 2560);
return { height, is2xl, is3xl, isLg, isMd, isSm, isXl, isXs, ref, width };
const isCalculated = width !== 0;
return { height, is2xl, is3xl, isCalculated, isLg, isMd, isSm, isXl, isXs, ref, width };
};