@oliasoft-open-source/react-ui-library 5.7.0-beta-2 → 5.7.0-beta-3

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.
package/dist/index.d.ts CHANGED
@@ -49,7 +49,7 @@ declare type AuditLogOperation = 'Created' | 'Cloned' | 'Reverted' | 'Imported'
49
49
 
50
50
  declare type AuditLogSource = 'System' | 'Application' | 'API';
51
51
 
52
- export declare function AuditLogTable({ logs, onClick, loading }: IAuditLogTableProps): JSX_2.Element;
52
+ export declare function AuditLogTable({ logs, data, total, loading, selectedPage, rowsPerPage, onChangeRowsPerPage, onSelectPage, }: IAuditLogTableProps): JSX_2.Element;
53
53
 
54
54
  export declare const Badge: ({ children, color, title, dot, margin, small, }: IBadgeProps) => JSX_2.Element;
55
55
 
@@ -186,8 +186,13 @@ export declare interface IActionProps {
186
186
 
187
187
  declare interface IAuditLogTableProps {
188
188
  logs: AuditLogItem[];
189
+ total: number;
189
190
  loading?: boolean;
190
- onClick: (log: AuditLogItem) => void;
191
+ selectedPage: number;
192
+ rowsPerPage: number;
193
+ onSelectPage: (page: number) => void;
194
+ onChangeRowsPerPage: (n: number) => void;
195
+ data: any;
191
196
  }
192
197
 
193
198
  export declare interface IBadgeProps {