We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29c9f6f commit e55f0d3Copy full SHA for e55f0d3
2 files changed
src/controllers/Lane.js
@@ -233,6 +233,7 @@ class Lane extends Component {
233
onCardAdd,
234
onCardDelete,
235
onLaneDelete,
236
+ onLaneUpdate,
237
onCardMoveAcrossLanes,
238
...otherProps
239
} = this.props
@@ -267,18 +268,18 @@ Lane.propTypes = {
267
268
draggable: PropTypes.bool,
269
collapsibleLanes: PropTypes.bool,
270
droppable: PropTypes.bool,
- onLaneScroll: PropTypes.func,
271
onCardMoveAcrossLanes: PropTypes.func,
272
onCardClick: PropTypes.func,
273
onCardDelete: PropTypes.func,
274
- onLaneDelete: PropTypes.func,
275
onCardAdd: PropTypes.func,
+ onLaneDelete: PropTypes.func,
276
+ onLaneUpdate: PropTypes.func,
277
onLaneClick: PropTypes.func,
278
+ onLaneScroll: PropTypes.func,
279
editable: PropTypes.bool,
280
cardDraggable: PropTypes.bool,
281
cardDragClass: PropTypes.string,
282
canAddLanes: PropTypes.bool,
- onLaneUpdate: PropTypes.func,
283
t: PropTypes.func.isRequired
284
}
285
0 commit comments