/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ import React from "react"; import PropTypes from "prop-types"; class CustomInput extends React.Component { onChange(e) { var args = [e, e.target.value]; if (this.props.onChangeArgs) { args = this.props.onChangeArgs(e); } this.props.onChange.apply(this, args); } render() { let { ...props } = this.props; delete props.onChangeArgs; return } } CustomInput.propTypes = { onChange: PropTypes.func, onChangeArgs: PropTypes.func }; export default CustomInput;