增加 textDecorationLine: underline line-through 编译和运行时抹平#2504
Merged
Conversation
hiyuki
reviewed
Jun 10, 2026
| const [a, b, c, d, tx, ty] = matrixValues | ||
| transform.push({ matrix: [a, b, 0, 0, c, d, 0, 0, 0, 0, 1, 0, tx, ty, 0, 1] }) | ||
| } else { | ||
| error(`Value of [transform] in ${selector} does not support matrix with ${matrixValues.length} values, only 16 values are supported in ${mode} environment!`) |
hiyuki
reviewed
Jun 10, 2026
| const [a, b, c, d, tx, ty] = matrixValues | ||
| transform.push({ matrix: [a, b, 0, 0, c, d, 0, 0, 0, 0, 1, 0, tx, ty, 0, 1] }) | ||
| } else { | ||
| error(`Transform matrix only supports 16 values in React Native, got ${matrixValues.length}`) |
hiyuki
reviewed
Jun 10, 2026
| })) | ||
| break | ||
| } | ||
| case 'rotate3d': { |
hiyuki
reviewed
Jun 10, 2026
| } | ||
| } | ||
|
|
||
| function transformTextDecoration (styleObj: Record<string, any>) { |
Collaborator
There was a problem hiding this comment.
这个可以直接合到transformShorthand里吧
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
bugfix:
1.text-decoration 编译时处理支持 text-decoration: underline line-through
2.transform编译&运行时处理(支持 matrix 6位、matrix3d、rotate3d)
3.编译指定background-position x y 顺序
4.fix fix background-sizde cover contain 问题
5.boxShadow 不生效问题,保留 px 单位,仅处理 rpx 转 px
运行时feature:
1 background-position x y 顺序
2 text-decoration: underline line-through
3 去掉简写属性不支持单个css var的逻辑(已测试)