ados-rcm 1.0.70 → 1.0.72

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.
@@ -676,6 +676,12 @@ export interface IATableProps<T extends IItem> {
676
676
  * Description : hides count if set to true
677
677
  */
678
678
  noCount?: boolean;
679
+ /**
680
+ * noMarking? : boolean
681
+ *
682
+ * Description : hides marking if set to true
683
+ */
684
+ noMarking?: boolean;
679
685
  /**
680
686
  * TopLeftAddon? : React.ReactNode
681
687
  *
@@ -14,6 +14,7 @@ interface IATableBodyProps<T extends IItem> {
14
14
  useSortation: TUseValues<IATableSortation<T>>;
15
15
  pagination: IATablePagination;
16
16
  pagedItems: T[];
17
+ noMarking?: boolean;
17
18
  showRows?: number;
18
19
  }
19
20
  export declare const ATableBody: <T extends IItem>(props: IATableBodyProps<T>) => import("react/jsx-runtime").JSX.Element;