Skip to content

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

Closed
wants to merge 1 commit into from
Closed

Conversation

Inbal-Tish
Copy link
Collaborator

#863 Description
Exporting BaseComponentInjectedProps, ForwardRefInjectedProps and ModifiersProps (to extract sub-modifiers props, like MarginModifiers).

Changelog

Commons - exporting props.

…ifiersProps (to extract sub-modifiers props, like MarginModifiers).
@@ -27,5 +27,14 @@ module.exports = {
},
get withScrollReached() {
return require('./withScrollReached').default;
},
Copy link
Collaborator

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..

Copy link
Collaborator Author

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 only commons/index.js...

Copy link
Collaborator

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..

Comment on lines +229 to +237
get BaseComponentInjectedProps() {
return require('./commons').BaseComponentInjectedProps;
},
get ForwardRefInjectedProps() {
return require('./commons').ForwardRefInjectedProps;
},
get ModifiersProps() {
return require('./commons').default;
},
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need to export the typings in the ts files
generatedTypes/index.d.ts
src/index.ts

Copy link
Collaborator Author

@Inbal-Tish Inbal-Tish Oct 26, 2020

Choose a reason for hiding this comment

The 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 generatedTypes/index if these are TS fils? And where all the other commons exports in src/index.ts?

@Inbal-Tish Inbal-Tish closed this Oct 27, 2020
@Inbal-Tish Inbal-Tish deleted the feat/export_commons_props branch October 27, 2020 07:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants