| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
PatternFly-React preview: https://1232-pr-patternfly-react-patternfly.surge.sh |
Sorry, something went wrong.
Pull Request Test Coverage Report for Build 4316
💛 - Coveralls |
Sorry, something went wrong.
| @@ -1,4 +1,5 @@ | |||
| export * from './components'; | |||
| export * from './layouts'; | |||
| export * from './internal'; | |||
There was a problem hiding this comment.
kind of semantics, but if it is exported it is not really internals anymore. Maybe rename to helpers or something similar?
Sorry, something went wrong.
There was a problem hiding this comment.
i was thinking the same thing this morning actually... i'm up for this if others are.
Sorry, something went wrong.
There was a problem hiding this comment.
helpers sounds good
Sorry, something went wrong.
There was a problem hiding this comment.
ok, works for me. Will update soon.
Sorry, something went wrong.
|
@priley86 looks like this one still needs some updates and conflicts resolved. |
Sorry, something went wrong.
|
will rebase this and update to helperssoon after #1317 ... would be really helpful to have this. |
Sorry, something went wrong.
|
*rebased and tested locally. Should be g2g. |
Sorry, something went wrong.
| export function debounce(func, wait) { | ||
| let timeout; | ||
| return (...args) => { | ||
| export function debounce(this: any, func: (...args: any[]) => any, wait: number) { |
There was a problem hiding this comment.
Method signature has changed, is it needed to use this as first argument?
Sorry, something went wrong.
There was a problem hiding this comment.
thanks... will rebase
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM
Sorry, something went wrong.
…re (patternfly#1232) * fix(utils): export common utility functions and constants used in react-core * renamed internal to helpers * update debounce method
| Back | FazBrowse Home | New Git URL |
What:
A minor minor addition to react-core to help out #1227
Additional issues:
none