Optionally adding original class name to ease debug and reporting on Sentry #1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request adds the possibility to include the original class name into the resulting class name (if you use a style named
styles.foo
, thenfoo
is the original class name). We add it with an underscore prefix to avoid clashing with user-given class names. This is turned on by default on the runtime lib, and turned off by default on the build time lib.The intended use cases of this feature are:
<div>
corresponds to which componentBoth these problems could also be solved (in the build time lib at least) by adding the original classname as a data attribute (something on the lines of "data-original-class"), although that would require a much more complex processing since we would have to rewrite attributes that aren't even originally set on the components, and handle the merge of original class names separately (in situations in which
cn(styles.foo, styles.bar)
is used). So I went for the path of least resistance at first ;-)