-
Notifications
You must be signed in to change notification settings - Fork 734
Commons - exporting props #1002
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -226,6 +226,15 @@ export default { | |
get withScrollReached() { | ||
return require('./commons').withScrollReached; | ||
}, | ||
get BaseComponentInjectedProps() { | ||
return require('./commons').BaseComponentInjectedProps; | ||
}, | ||
get ForwardRefInjectedProps() { | ||
return require('./commons').ForwardRefInjectedProps; | ||
}, | ||
get ModifiersProps() { | ||
return require('./commons').default; | ||
}, | ||
Comment on lines
+229
to
+237
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to export the typings in the ts files There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I don't understand what is what with all the fake files... Why they should be exported in |
||
|
||
// Helpers | ||
get AvatarHelper() { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is not good..
There's a new temp file
commons/new.ts
(that will replace commons/index.js eventually)The typings are already exported there..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is the call for the
commons/new.ts
file? I see onlycommons/index.js
...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're using it in the components that need these typings..
View, Text, Button.. almost all of them..