ados-rcm 1.1.173 → 1.1.175
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ATable/ATableBody.d.ts +2 -0
- package/dist/index.cjs.js +26 -26
- package/dist/index.es.js +3350 -3347
- package/package.json +1 -1
@@ -1,3 +1,4 @@
|
|
1
|
+
import React from 'react';
|
1
2
|
import { TUseValues } from '../../AHooks/useValues';
|
2
3
|
import { TCanCallback } from '../../AUtils/cbF';
|
3
4
|
import { IItem } from '../../AUtils/objF';
|
@@ -9,6 +10,7 @@ interface IATableBodyProps<T extends IItem> {
|
|
9
10
|
defs: TATableDefs<T>;
|
10
11
|
isEqual: (a: T, b: T) => boolean;
|
11
12
|
rProps?: TCanCallback<IATableTRProps<T>, IABaseProps>;
|
13
|
+
ref: React.RefObject<HTMLDivElement>;
|
12
14
|
useSelect?: TUseValues<T[]>;
|
13
15
|
isTableDisabled?: string | boolean;
|
14
16
|
isSelectMulti?: boolean;
|