@muraldevkit/ui-toolkit 4.4.0 → 4.4.1

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.
@@ -3,9 +3,10 @@
3
3
  *
4
4
  * @param element element of type T
5
5
  * @param disabledScrollTracking boolean to disable scroll tracking.
6
+ * @param openState boolean to track if the element's open state changed.
6
7
  * @returns coordinate object of element.
7
8
  */
8
- export declare const useCoordinate: <T extends HTMLElement | null>(element: T, disabledScrollTracking?: boolean) => {
9
+ export declare const useCoordinate: <T extends HTMLElement | null>(element: T, disabledScrollTracking: boolean | undefined, openState: boolean) => {
9
10
  bottom: number;
10
11
  height: number;
11
12
  left: number;