ados-rcm 1.0.439 → 1.0.441

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.
@@ -29,6 +29,12 @@ export interface IATabProps<T> {
29
29
  * Description : useSelect of ATab
30
30
  */
31
31
  useSelect?: TUseValues<T>;
32
+ /**
33
+ * selectDisabled? : (option: T) => string | boolean | undefined
34
+ *
35
+ * Description : selectDisabled of ATab
36
+ */
37
+ selectDisabled?: (option: T) => string | boolean | undefined;
32
38
  /**
33
39
  * tabProps? : React.HTMLProps<HTMLDivElement>
34
40
  *
@@ -4,6 +4,7 @@ import { IItem } from '../../AUtils/objF';
4
4
  import { IABaseProps } from '../ABase/ABase';
5
5
  import { Resources } from '../AResource/AResource';
6
6
  import { IATablePagination, IATableSortation, IATableTRProps, TATableDefs, TATableFilteration } from './ATable';
7
+ export declare const MIN_COLUMN_WIDTH = 25;
7
8
  interface IATableBodyProps<T extends IItem> {
8
9
  defs: TATableDefs<T>;
9
10
  isEqual: (a: T, b: T) => boolean;