Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/light-fans-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@qwik-ui/styled': patch
---

fix: The styled carousel types now use the "type" keyword
14 changes: 7 additions & 7 deletions packages/kit-styled/src/components/carousel/carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
Loading