@abdellatifui/react 3.2.74 → 3.2.75
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/nextgen.css +1 -1
- package/dist/nextgen.d.ts +7 -0
- package/dist/nextgen.js +2715 -2695
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -1423,6 +1423,13 @@ width: number;
|
|
|
1423
1423
|
height: number;
|
|
1424
1424
|
}>>)[];
|
|
1425
1425
|
|
|
1426
|
+
export declare function useBoxSizeByDOM(dom: any): {
|
|
1427
|
+
y: number;
|
|
1428
|
+
x: number;
|
|
1429
|
+
width: number;
|
|
1430
|
+
height: number;
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1426
1433
|
export declare interface UseBoxSizeReturn {
|
|
1427
1434
|
x: number;
|
|
1428
1435
|
y: number;
|