@jswork/react-ant-input-search
v1.0.4
Published
Ant input search box optimize.
Downloads
6
Maintainers
Readme
react-ant-input-search
Ant input search box optimize.
installation
npm install -S @jswork/react-ant-input-search
properties
| Name | Type | Required | Default | Description | | --------- | ------ | -------- | ------- | ------------------------------------- | | className | string | false | - | The extended className for component. | | onSearch | func | false | noop | The search handler. |
usage
- import css
@import "~@jswork/react-ant-input-search/dist/style.css";
// or use sass
@import "~@jswork/react-ant-input-search/dist/style.scss";
// customize your styles:
$react-ant-input-search-options: ()
- import js
import ReactDemokit from '@jswork/react-demokit';
import React from 'react';
import ReactDOM from 'react-dom/client';
import ReactAntInputSearch from '@jswork/react-ant-input-search';
import './assets/style.scss';
class App extends React.Component {
handleChange = (inEvent) => {
const { value } = inEvent.target;
console.log('change:', value);
};
handleSearch = (inEvent) => {
const { value } = inEvent.target;
console.log('search.', value);
};
render() {
return (
<ReactDemokit
className="p-3 app-container"
url="https://github.com/afeiship/react-ant-input-search">
<ReactAntInputSearch
placeholder="input search text"
allowClear
enterButton
className="bg-gray-800 mb-5 text-white"
onChange={this.handleChange}
onSearch={this.handleSearch}
/>
</ReactDemokit>
);
}
}
// ReactDOM.render(<App />, document.getElementById('app'));
ReactDOM.createRoot(document.getElementById('app')).render(<App />);
documentation
- https://afeiship.github.io/react-ant-input-search/
license
Code released under the MIT license.