-
Notifications
You must be signed in to change notification settings - Fork 184
Add native support for css.types.*
functions
#369
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
base: main
Are you sure you want to change the base?
Conversation
These functions pass the value straight through on native. Fix #331
export type { StaticStyles }; | ||
export type { StyleXStyles as Styles }; | ||
export type { StyleXStylesWithout as StylesWithout }; | ||
export type { Theme as StyleTheme }; | ||
export type { Types as StyleTypes }; | ||
export type { VarGroup as StyleVars }; |
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.
- The exports need to be updated in the DOM branch too.
- Make it easy to drop the
Types
export during internal sync
workflow: benchmarks/sizeComparison of minified (terser) and compressed (brotli) size results, measured in bytes. Smaller is better.
|
workflow: benchmarks/perf (native)Comparison of performance test results, measured in operations per second. Larger is better.
|
could this PR be merged? I got error in react-native:
or is there any workaroud? |
This API isn't used at Meta, so I suggest not using it |
These functions pass the value straight through on native.
Fix #331
Ref #337