@reeverdev/ui 0.2.123 → 0.2.124
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/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2932,6 +2932,7 @@ type CarouselContextProps = {
|
|
|
2932
2932
|
selectedIndex: number;
|
|
2933
2933
|
scrollSnaps: number[];
|
|
2934
2934
|
scrollTo: (index: number) => void;
|
|
2935
|
+
orientation: "horizontal" | "vertical";
|
|
2935
2936
|
};
|
|
2936
2937
|
declare function useCarousel(): CarouselContextProps;
|
|
2937
2938
|
interface CarouselProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof carouselVariants> {
|
package/dist/index.d.ts
CHANGED
|
@@ -2932,6 +2932,7 @@ type CarouselContextProps = {
|
|
|
2932
2932
|
selectedIndex: number;
|
|
2933
2933
|
scrollSnaps: number[];
|
|
2934
2934
|
scrollTo: (index: number) => void;
|
|
2935
|
+
orientation: "horizontal" | "vertical";
|
|
2935
2936
|
};
|
|
2936
2937
|
declare function useCarousel(): CarouselContextProps;
|
|
2937
2938
|
interface CarouselProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof carouselVariants> {
|