Latest updates from IceHrmPro
This commit is contained in:
27
web/node_modules/antd/es/input/Password.d.ts
generated
vendored
Normal file
27
web/node_modules/antd/es/input/Password.d.ts
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import * as React from 'react';
|
||||
import { ConfigConsumerProps } from '../config-provider';
|
||||
import Input, { InputProps } from './Input';
|
||||
export interface PasswordProps extends InputProps {
|
||||
readonly inputPrefixCls?: string;
|
||||
readonly action?: string;
|
||||
visibilityToggle?: boolean;
|
||||
}
|
||||
export interface PasswordState {
|
||||
visible: boolean;
|
||||
}
|
||||
export default class Password extends React.Component<PasswordProps, PasswordState> {
|
||||
input: HTMLInputElement;
|
||||
static defaultProps: {
|
||||
action: string;
|
||||
visibilityToggle: boolean;
|
||||
};
|
||||
state: PasswordState;
|
||||
onVisibleChange: () => void;
|
||||
getIcon: (prefixCls: string) => React.ReactElement<{}, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
|
||||
saveInput: (instance: Input) => void;
|
||||
focus(): void;
|
||||
blur(): void;
|
||||
select(): void;
|
||||
renderPassword: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element;
|
||||
render(): JSX.Element;
|
||||
}
|
||||
Reference in New Issue
Block a user