ados-rcm 1.1.404 → 1.1.406

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.
@@ -583,6 +583,12 @@ export interface IATableProps<T extends IItem> {
583
583
  * Description : filterType of ATable. When 'Select', it behaves like the old useSelectFilteration.
584
584
  */
585
585
  filterType?: 'Default' | 'Select';
586
+ /**
587
+ * placeholder? : string
588
+ *
589
+ * Description : placeholder of ATable.
590
+ */
591
+ placeholder?: string;
586
592
  /**
587
593
  * usePagination? : TUseValues<IATablePagination>
588
594
  *
@@ -12,6 +12,7 @@ interface IATableFilterProps<T extends IItem> {
12
12
  isFilterSort?: boolean;
13
13
  resources: typeof Resources.ATable;
14
14
  filterType: 'Default' | 'Select';
15
+ placeholder?: string;
15
16
  }
16
17
  export declare const ATableFilter: <T extends IItem>(props: IATableFilterProps<T>) => import("react/jsx-runtime").JSX.Element | null;
17
18
  export {};
@@ -24,5 +24,6 @@ export interface IATableHeaderProps<T extends IItem> {
24
24
  isRowRendered?: boolean;
25
25
  resources: typeof Resources.ATable;
26
26
  filterType: 'Default' | 'Select';
27
+ placeholder?: string;
27
28
  }
28
29
  export declare const ATableHeader: <T extends IItem>(props: IATableHeaderProps<T>) => import("react/jsx-runtime").JSX.Element;