Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/afeiship/react-ant-radio-group

React ant radio group.
https://github.com/afeiship/react-ant-radio-group

ant antd group radio react

Last synced: about 2 months ago
JSON representation

React ant radio group.

Awesome Lists containing this project

README

        

# react-ant-radio-group
> React ant radio group.

[![version][version-image]][version-url]
[![license][license-image]][license-url]
[![size][size-image]][size-url]
[![download][download-image]][download-url]

## installation
```shell
npm install -S @jswork/react-ant-radio-group
```

## properties
| Name | Type | Required | Default | Description |
| --------- | ------ | -------- | ------------- | ------------------------------------- |
| className | string | false | - | The extended className for component. |
| value | any | false | - | Default value. |
| onChange | func | false | noop | The change handler. |
| onSearch | func | false | noop | The handle when search confirm. |
| items | array | false | [] | Value/label pairs. |
| template | func | false | RctplAntRadio | The template. |

## usage
1. import css
```scss
@import "~@jswork/react-ant-radio-group/dist/style.css";

// or use sass
@import "~@jswork/react-ant-radio-group/dist/style.scss";

// customize your styles:
$react-ant-radio-group-options: ()
```
2. import js
```js
import ReactDemokit from '@jswork/react-demokit';
import React from 'react';
import ReactDOM from 'react-dom';
import RctplAntRadioButton from '@jswork/rctpl-ant-radio-button';
import ReactAntRadioGroup from '@jswork/react-ant-radio-group';
import { Radio } from 'antd';
import './assets/style.scss';

class App extends React.Component {
state = {
items2: [
{
value: 'k2-1',
label: 'k2111'
},
{
value: 'k2-2',
label: 'k2222'
}
],
items: [
{
value: 'k1',
label: 'k111'
},
{
value: 'k2',
label: 'k222'
}
]
};

render() {
return (



{
console.log('radio button tmpl:', e.target.value);
}}
onSearch={(e) => {
console.log('search event:', e.target.value);
}}
items={this.state.items}
template={RctplAntRadioButton}
/>


{
console.log('radio tmpl:', e.target.value);
}}
items={this.state.items}
/>

{
return (

{item.label}

);
}}
/>



);
}
}

ReactDOM.render(, document.getElementById('app'));

```

## documentation
- https://afeiship.github.io/react-ant-radio-group/

## license
Code released under [the MIT license](https://github.com/afeiship/react-ant-radio-group/blob/master/LICENSE.txt).

[version-image]: https://img.shields.io/npm/v/@jswork/react-ant-radio-group
[version-url]: https://npmjs.org/package/@jswork/react-ant-radio-group

[license-image]: https://img.shields.io/npm/l/@jswork/react-ant-radio-group
[license-url]: https://github.com/afeiship/react-ant-radio-group/blob/master/LICENSE.txt

[size-image]: https://img.shields.io/bundlephobia/minzip/@jswork/react-ant-radio-group
[size-url]: https://github.com/afeiship/react-ant-radio-group/blob/master/dist/react-ant-radio-group.min.js

[download-image]: https://img.shields.io/npm/dm/@jswork/react-ant-radio-group
[download-url]: https://www.npmjs.com/package/@jswork/react-ant-radio-group