@julseb-lib/react 1.0.62 → 1.0.63

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.cts CHANGED
@@ -556,7 +556,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
556
556
  */
557
557
  declare const useTextLineCount: (text: string, fontSize?: number) => {
558
558
  visualLines: number;
559
- elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | null>;
559
+ elementRef: react.RefObject<HTMLInputElement | HTMLTextAreaElement | null>;
560
560
  };
561
561
 
562
562
  /**
package/dist/index.d.ts CHANGED
@@ -556,7 +556,7 @@ declare const usePagination: ({ currentPage, setCurrentPage, totalPages, }: ILib
556
556
  */
557
557
  declare const useTextLineCount: (text: string, fontSize?: number) => {
558
558
  visualLines: number;
559
- elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | null>;
559
+ elementRef: react.RefObject<HTMLInputElement | HTMLTextAreaElement | null>;
560
560
  };
561
561
 
562
562
  /**
package/dist/index.js CHANGED
@@ -68304,7 +68304,7 @@ var SlideshowPagination = ({
68304
68304
  "size-2 rounded-full block"
68305
68305
  ],
68306
68306
  type === "dots-outline" && [
68307
- "size-2 rounded-full border-1"
68307
+ "size-2 rounded-full border"
68308
68308
  ],
68309
68309
  type === "bars" && ["grow h-1 rounded-full"],
68310
68310
  "slideshow-control"
@@ -68565,7 +68565,7 @@ var Slideshow = ({
68565
68565
  SlideshowPagination,
68566
68566
  {
68567
68567
  className: pagination?.className,
68568
- images: pagination?.images,
68568
+ images: pagination?.images ?? images,
68569
68569
  active: currentSlide,
68570
68570
  setActive: setCurrentSlide,
68571
68571
  contentLength: totalSlides,