ados-rcm 1.0.69 → 1.0.71

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.
@@ -22,8 +22,10 @@ export declare const Resources: {
22
22
  ATable: {
23
23
  'c/t items checked': (c: number, t: number) => string;
24
24
  't items': (t: number) => string;
25
- Search: string;
25
+ 'Search(Placeholder)': string;
26
+ 'Search(Button)': string;
26
27
  Select: string;
28
+ 'Toggle Filter': string;
27
29
  };
28
30
  ASelect: {
29
31
  Select: string;
@@ -85,6 +85,12 @@ export interface IASelectProps<I, S extends (null | I) | I[]> extends IABaseProp
85
85
  * Description : maxShowRows of ASelect. scrollbar will appear when overflow
86
86
  */
87
87
  maxShowRows?: number;
88
+ /**
89
+ * height? : number
90
+ *
91
+ * Description : height of ASelect
92
+ */
93
+ height?: number;
88
94
  /**
89
95
  * arrowProps? : React.HTMLProps<HTMLDivElement>
90
96
  *
@@ -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;