@chekinapp/ui 0.0.33 → 0.0.34
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 +257 -248
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +329 -320
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -2576,7 +2576,7 @@ type UseOutsideClickProps<T extends Element> = {
|
|
|
2576
2576
|
};
|
|
2577
2577
|
declare function useOutsideClick<T extends Element>({ elementRef, onOutsideClick, triggerRef, isDisabled, nested, }: UseOutsideClickProps<T>): void;
|
|
2578
2578
|
|
|
2579
|
-
declare function useScreenResize(maxWidth: string): {
|
|
2579
|
+
declare function useScreenResize(maxWidth: string | null, matchString?: string): {
|
|
2580
2580
|
isMatch: boolean;
|
|
2581
2581
|
isInitialized: boolean;
|
|
2582
2582
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2576,7 +2576,7 @@ type UseOutsideClickProps<T extends Element> = {
|
|
|
2576
2576
|
};
|
|
2577
2577
|
declare function useOutsideClick<T extends Element>({ elementRef, onOutsideClick, triggerRef, isDisabled, nested, }: UseOutsideClickProps<T>): void;
|
|
2578
2578
|
|
|
2579
|
-
declare function useScreenResize(maxWidth: string): {
|
|
2579
|
+
declare function useScreenResize(maxWidth: string | null, matchString?: string): {
|
|
2580
2580
|
isMatch: boolean;
|
|
2581
2581
|
isInitialized: boolean;
|
|
2582
2582
|
};
|