@aveonline/ui-react 2.16.0 → 2.17.0

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,7 +1,7 @@
1
1
  import { FocusEvent, MouseEvent } from 'react';
2
2
  export declare type ISize = 'sm' | 'md' | 'lg';
3
3
  export declare type IColor = 'success' | 'warning' | 'disabled' | 'active' | 'hovered' | 'subdued' | 'default' | 'critical' | 'primary' | 'on' | 'pressed';
4
- export declare type IKind = 'shipping' | 'home' | 'menu' | 'notifications' | 'novelty' | 'help' | 'see-more' | 'info' | 'alert' | 'eye' | 'date' | 'search' | 'delete' | 'more-less' | 'down' | 'up' | 'back' | 'front' | 'major-minor' | 'minor-major' | 'create' | 'success' | 'error' | 'less' | 'joke' | 'shipments' | 'padlock' | 'new' | 'average-unit' | 'average-guide' | 'percentage' | 'download' | 'upload' | 'file' | 'thin-back' | 'thin-front' | 'page-back' | 'page-front' | 'print' | 'more' | 'shipping-ratio' | 'reports' | 'courier' | 'pickup' | 'grin-wink' | 'circle-dollar-to-slot' | 'money' | 'trash' | 'start' | 'edit' | 'copy' | 'menu-line' | 'menu-square' | 'net' | 'arrow-rotate' | undefined;
4
+ export declare type IKind = 'shipping' | 'home' | 'menu' | 'notifications' | 'novelty' | 'help' | 'see-more' | 'info' | 'alert' | 'eye' | 'date' | 'search' | 'delete' | 'more-less' | 'down' | 'up' | 'back' | 'front' | 'major-minor' | 'minor-major' | 'create' | 'success' | 'error' | 'less' | 'joke' | 'shipments' | 'padlock' | 'new' | 'average-unit' | 'average-guide' | 'percentage' | 'download' | 'upload' | 'file' | 'thin-back' | 'thin-front' | 'page-back' | 'page-front' | 'print' | 'more' | 'shipping-ratio' | 'reports' | 'courier' | 'pickup' | 'grin-wink' | 'circle-dollar-to-slot' | 'money' | 'trash' | 'start' | 'edit' | 'copy' | 'menu-line' | 'menu-square' | 'net' | 'arrow-rotate' | 'location' | 'search-alert' | undefined;
5
5
  interface IconProps {
6
6
  /**
7
7
  * Sizes availables
@@ -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';