Skip to content

Commit

Permalink
Fixing affix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lbstr committed Apr 23, 2018
1 parent 65e2c38 commit fe1f319
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/Affix.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ Affix.propTypes = {
* CSS class or classes to apply when affixed
*/
affixClassName: PropTypes.string,

/**
* Style to apply when affixed
*/
Expand All @@ -223,31 +224,32 @@ Affix.propTypes = {
bottomStyle: PropTypes.object,

/**
* Callback fired when the right before the `affixStyle` and `affixStyle` props are rendered
* Callback fired right before the `affixStyle` and `affixClassName` props are rendered
*/
onAffix: PropTypes.func,

/**
* Callback fired after the component `affixStyle` and `affixClassName` props have been rendered.
* Callback fired after the component `affixStyle` and `affixClassName` props have been rendered
*/
onAffixed: PropTypes.func,

/**
* Callback fired when the right before the `topStyle` and `topClassName` props are rendered
* Callback fired right before the `topStyle` and `topClassName` props are rendered
*/
onAffixTop: PropTypes.func,

/**
* Callback fired after the component `topStyle` and `topClassName` props have been rendered.
* Callback fired after the component `topStyle` and `topClassName` props have been rendered
*/
onAffixedTop: PropTypes.func,

/**
* Callback fired when the right before the `bottomStyle` and `bottomClassName` props are rendered
* Callback fired right before the `bottomStyle` and `bottomClassName` props are rendered
*/
onAffixBottom: PropTypes.func,

/**
* Callback fired after the component `bottomStyle` and `bottomClassName` props have been rendered.
* Callback fired after the component `bottomStyle` and `bottomClassName` props have been rendered
*/
onAffixedBottom: PropTypes.func
};
Expand Down

0 comments on commit fe1f319

Please sign in to comment.