From d77cc6d9061f4c487598d21c0fda600b9b7e75df Mon Sep 17 00:00:00 2001 From: maiieul <45822175+maiieul@users.noreply.github.com> Date: Tue, 7 Oct 2025 11:47:04 +0200 Subject: [PATCH 1/2] fix: styled carousel types --- .../src/components/carousel/carousel.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/kit-styled/src/components/carousel/carousel.tsx b/packages/kit-styled/src/components/carousel/carousel.tsx index 66f31527b..105d6feb7 100644 --- a/packages/kit-styled/src/components/carousel/carousel.tsx +++ b/packages/kit-styled/src/components/carousel/carousel.tsx @@ -2,22 +2,22 @@ import { useContext, component$, createContextId, - PropsOf, + type PropsOf, Slot, useContextProvider, - Signal, + type Signal, } from '@builder.io/qwik'; - -import { Carousel as HCarousel } from '@qwik-ui/headless'; -import { cn } from '@qwik-ui/utils'; -import { buttonVariants } from '../button/button'; -import { VariantProps } from 'class-variance-authority'; +import type { VariantProps } from 'class-variance-authority'; import { LuChevronDown, LuChevronLeft, LuChevronRight, LuChevronUp, } from '@qwikest/icons/lucide'; +import { Carousel as HCarousel } from '@qwik-ui/headless'; +import { cn } from '@qwik-ui/utils'; + +import { buttonVariants } from '../button/button'; const styledCarouselContextId = createContextId<{ orientation: 'horizontal' | 'vertical'; From 57005d9a5dde14192f8865ee79b70ed5368230c5 Mon Sep 17 00:00:00 2001 From: maiieul <45822175+maiieul@users.noreply.github.com> Date: Tue, 7 Oct 2025 11:49:56 +0200 Subject: [PATCH 2/2] chore: changeset --- .changeset/light-fans-grow.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/light-fans-grow.md diff --git a/.changeset/light-fans-grow.md b/.changeset/light-fans-grow.md new file mode 100644 index 000000000..5fcff6e9c --- /dev/null +++ b/.changeset/light-fans-grow.md @@ -0,0 +1,5 @@ +--- +'@qwik-ui/styled': patch +--- + +fix: The styled carousel types now use the "type" keyword