@aveonline/ui-react 2.16.0 → 2.16.1

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.
@@ -1,3 +1,3 @@
1
1
  import { IButtonPagination } from './IPagination';
2
- declare function ButtonPagination({ pageIndex, currentPage, onClick, position, lastCount }: IButtonPagination): JSX.Element;
2
+ declare const ButtonPagination: import("react").MemoExoticComponent<({ pageIndex, currentPage, onClick, position, lastCount }: IButtonPagination) => JSX.Element>;
3
3
  export default ButtonPagination;
@@ -1,4 +1,4 @@
1
1
  import { HTMLProps } from 'react';
2
- export declare function CheckBoxTable({ indeterminate, ...rest }: {
3
- indeterminate?: boolean;
4
- } & HTMLProps<HTMLInputElement>): JSX.Element;
2
+ export declare const CheckBoxTable: import("react").MemoExoticComponent<({ indeterminate, ...rest }: {
3
+ indeterminate?: boolean | undefined;
4
+ } & HTMLProps<HTMLInputElement>) => JSX.Element>;
@@ -4,5 +4,5 @@ declare type Props = {
4
4
  debounce?: number;
5
5
  placeholder?: string;
6
6
  };
7
- declare function InputSearch({ value: initialValue, onChange, debounce, placeholder, ...props }: Props): JSX.Element;
8
- export default InputSearch;
7
+ export declare const InputSearch: import("react").MemoExoticComponent<({ value, onChange, debounce, placeholder, ...props }: Props) => JSX.Element>;
8
+ export {};
@@ -1,4 +1,4 @@
1
- export { default as InputSearch } from './InputSearch';
1
+ export { InputSearch } from './InputSearch';
2
2
  export { default as Pagination } from './Pagination';
3
3
  export { default as SortTable } from './SortTable';
4
4
  export * from './ISortTable';