Latest updates from IceHrmPro

This commit is contained in:
Thilina Pituwala
2020-05-20 18:47:29 +02:00
parent 60c92d7935
commit 7453a58aad
18012 changed files with 2089245 additions and 10173 deletions

27
web/node_modules/antd/lib/input/Search.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import * as React from 'react';
import Input, { InputProps } from './Input';
import { SizeType } from '../config-provider/SizeContext';
import { ConfigConsumerProps } from '../config-provider';
export interface SearchProps extends InputProps {
inputPrefixCls?: string;
onSearch?: (value: string, event?: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLInputElement>) => void;
enterButton?: React.ReactNode;
loading?: boolean;
}
export default class Search extends React.Component<SearchProps, any> {
static defaultProps: {
enterButton: boolean;
};
private input;
saveInput: (node: Input) => void;
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
onMouseDown: React.MouseEventHandler<HTMLElement>;
onSearch: (e: React.MouseEvent<HTMLElement, MouseEvent> | React.KeyboardEvent<HTMLInputElement>) => void;
focus(): void;
blur(): void;
renderLoading: (prefixCls: string) => JSX.Element;
renderSuffix: (prefixCls: string) => {} | null | undefined;
renderAddonAfter: (prefixCls: string, size: SizeType) => {} | null | undefined;
renderSearch: ({ getPrefixCls, direction }: ConfigConsumerProps) => JSX.Element;
render(): JSX.Element;
}