ui-mathilde-web 0.1.23 → 0.1.25

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.
@@ -34,6 +34,7 @@ declare interface CardIndicatorProps {
34
34
  end: number;
35
35
  current: number;
36
36
  type: string;
37
+ classIm?: string;
37
38
  }
38
39
 
39
40
  declare interface CardItem {
@@ -67,7 +68,7 @@ declare interface CheckboxProps {
67
68
  declare interface Column {
68
69
  header: string;
69
70
  relation: string;
70
- cell?: (row: Record<string, unknown>) => React_2.ReactNode;
71
+ cell?: (row: Record<string, unknown>) => React.ReactNode;
71
72
  isToggle?: boolean;
72
73
  sortable?: boolean;
73
74
  toggleText?: {
@@ -274,6 +275,7 @@ declare interface TableComponentProps {
274
275
  showSearch?: boolean;
275
276
  itemsPerPage?: number;
276
277
  title?: string;
278
+ showPagination?: boolean;
277
279
  onToggleChange?: (rowData: {
278
280
  rowId: string | number;
279
281
  checked: boolean;