wix-style-react
Version:
wix-style-react
26 lines • 835 B
TypeScript
export default class ColorPickerConverterHex extends React.PureComponent<any, any, any> {
static propTypes: {
current: PropTypes.Validator<object>;
onChange: PropTypes.Validator<(...args: any[]) => any>;
placeholder: PropTypes.Requireable<string>;
};
constructor(props: any);
constructor(props: any, context: any);
state: {
hex: any;
inFocus: boolean;
};
render(): React.JSX.Element;
UNSAFE_componentWillReceiveProps(props: any): void;
change: ({ target: { value } }: {
target: {
value: any;
};
}) => void;
handleOnFocus: () => void;
handleOnBlur: () => void;
handleKeyDown: (event: any) => void;
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=ColorPickerConverterHex.d.ts.map