@sikka/hawa 0.16.13-next → 0.16.15-next
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +10082 -9758
- package/dist/index.mjs +548 -445
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -410,6 +410,7 @@ interface DialogCarouselProps {
|
|
|
410
410
|
children: React$1.ReactNode;
|
|
411
411
|
stepsApi?: any;
|
|
412
412
|
stepsRef?: any;
|
|
413
|
+
direction?: DirectionType;
|
|
413
414
|
}
|
|
414
415
|
declare const DialogCarousel: React$1.FC<DialogCarouselProps>;
|
|
415
416
|
interface DialogStepsProps {
|
|
@@ -1750,7 +1751,7 @@ declare function useToast(): {
|
|
|
1750
1751
|
toasts: ToasterToast[];
|
|
1751
1752
|
};
|
|
1752
1753
|
|
|
1753
|
-
declare const useDialogCarousel: () => {
|
|
1754
|
+
declare const useDialogCarousel: (options?: any) => {
|
|
1754
1755
|
emblaRef: <ViewportElement extends HTMLElement>(instance: ViewportElement | null) => void;
|
|
1755
1756
|
emblaApi: embla_carousel_react.EmblaCarouselType | undefined;
|
|
1756
1757
|
nextStep: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -410,6 +410,7 @@ interface DialogCarouselProps {
|
|
|
410
410
|
children: React$1.ReactNode;
|
|
411
411
|
stepsApi?: any;
|
|
412
412
|
stepsRef?: any;
|
|
413
|
+
direction?: DirectionType;
|
|
413
414
|
}
|
|
414
415
|
declare const DialogCarousel: React$1.FC<DialogCarouselProps>;
|
|
415
416
|
interface DialogStepsProps {
|
|
@@ -1750,7 +1751,7 @@ declare function useToast(): {
|
|
|
1750
1751
|
toasts: ToasterToast[];
|
|
1751
1752
|
};
|
|
1752
1753
|
|
|
1753
|
-
declare const useDialogCarousel: () => {
|
|
1754
|
+
declare const useDialogCarousel: (options?: any) => {
|
|
1754
1755
|
emblaRef: <ViewportElement extends HTMLElement>(instance: ViewportElement | null) => void;
|
|
1755
1756
|
emblaApi: embla_carousel_react.EmblaCarouselType | undefined;
|
|
1756
1757
|
nextStep: () => void;
|