@abdellatifui/react 3.2.74 → 3.2.76
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 +8 -0
- package/dist/nextgen.js +3412 -3391
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -542,6 +542,7 @@ declare interface InputProps_2 extends InputProps_3 {
|
|
|
542
542
|
placement: 'top' | 'bottom';
|
|
543
543
|
onEnterKey: void;
|
|
544
544
|
autoFocus: boolean;
|
|
545
|
+
inputProps?: HTMLInputElement;
|
|
545
546
|
}
|
|
546
547
|
|
|
547
548
|
declare interface InputProps_3 extends React_2.InputHTMLAttributes<HTMLInputElement> {
|
|
@@ -1423,6 +1424,13 @@ width: number;
|
|
|
1423
1424
|
height: number;
|
|
1424
1425
|
}>>)[];
|
|
1425
1426
|
|
|
1427
|
+
export declare function useBoxSizeByDOM(dom: any): {
|
|
1428
|
+
y: number;
|
|
1429
|
+
x: number;
|
|
1430
|
+
width: number;
|
|
1431
|
+
height: number;
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1426
1434
|
export declare interface UseBoxSizeReturn {
|
|
1427
1435
|
x: number;
|
|
1428
1436
|
y: number;
|