(props)
| 178 | } |
| 179 | |
| 180 | propsExtend (props) { |
| 181 | props.itemBind = this.itemBind; |
| 182 | props.itemUnbind = this.itemUnbind; |
| 183 | props.itemChange = this.itemChange; |
| 184 | props.formData = this.props.formData; |
| 185 | props.onValidate = this.handleValidate; |
| 186 | props.readOnly = props.readOnly || this.props.readOnly; |
| 187 | } |
| 188 | |
| 189 | renderChildren (children, index) { |
| 190 | let newChildren = Children.toArray(children).map((child, i) => { |
no outgoing calls
no test coverage detected