@julseb-lib/react 1.0.72 → 1.0.73

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.css CHANGED
@@ -310,7 +310,7 @@ html,
310
310
  body {
311
311
  font-family: var(--font-sans);
312
312
  width: 100%;
313
- min-height: 100vh;
313
+ height: fit-content;
314
314
  background-color: var(--color-background);
315
315
  color: var(--color-font);
316
316
  max-width: 100dvw;
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<HTMLInputElement | HTMLTextAreaElement | null>;
559
+ elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | 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<HTMLInputElement | HTMLTextAreaElement | null>;
559
+ elementRef: react.RefObject<HTMLTextAreaElement | HTMLInputElement | null>;
560
560
  };
561
561
 
562
562
  /**