ados-rcm 1.0.406 → 1.0.408

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.
@@ -425,7 +425,7 @@ export interface IATableProps<T extends IItem> {
425
425
  *
426
426
  * Description : decides whether the table is disabled or not
427
427
  */
428
- isDisabled?: boolean;
428
+ isDisabled?: string | boolean;
429
429
  /**
430
430
  * title? : React.ReactNode
431
431
  *
@@ -9,7 +9,7 @@ interface IATableBodyProps<T extends IItem> {
9
9
  isEqual: (a: T, b: T) => boolean;
10
10
  rProps?: TCanCallback<IATableTRProps<T>, IABaseProps>;
11
11
  useSelect?: TUseValues<T[]>;
12
- isTableDisabled?: boolean;
12
+ isTableDisabled?: string | boolean;
13
13
  isSelectMulti?: boolean;
14
14
  selectDisabled?: (item: T) => string | boolean | undefined;
15
15
  appliedFilteration: TATableFilteration<T>;