@apexcura/ui-components 0.0.16-Beta1102 → 0.0.16-Beta1103

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.
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { ElementType } from '../Types/types';
3
+ interface PaginationType {
4
+ name?: string;
5
+ page?: number;
6
+ pageSize?: number;
7
+ }
8
+ interface TableElementProps extends ElementType {
9
+ value?: PaginationType | null;
10
+ }
11
+ export declare const TableElement: (props: TableElementProps) => React.JSX.Element;
12
+ export {};
@@ -100,6 +100,7 @@ export type ElementType = {
100
100
  value: string;
101
101
  search?: string;
102
102
  };
103
+ limit?: number;
103
104
  ref?: LegacyRef<InputRef> | undefined;
104
105
  disabled?: boolean;
105
106
  prefix?: React.ReactNode;