Skip to content

Commit 79e7c1e

Browse files
authoredNov 8, 2022
fix(ssr): remove css number value check (#6636)
Previously this prevented custom properties and vendor-prefixed properties to be rendered correctly. fix #6625
1 parent 0455378 commit 79e7c1e

File tree

3 files changed

+6
-23
lines changed

3 files changed

+6
-23
lines changed
 

‎packages/server-renderer/__tests__/ssrRenderAttrs.spec.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,12 @@ describe('ssr: renderStyle', () => {
154154
expect(
155155
ssrRenderAttrs({
156156
style: {
157-
color: 'red'
157+
color: 'red',
158+
'--a': 2,
159+
'-webkit-line-clamp': 1
158160
}
159161
})
160-
).toBe(` style="color:red;"`)
162+
).toBe(` style="color:red;--a:2;-webkit-line-clamp:1;"`)
161163
})
162164

163165
test('standalone', () => {
@@ -178,7 +180,7 @@ describe('ssr: renderStyle', () => {
178180
test('number handling', () => {
179181
expect(
180182
ssrRenderStyle({
181-
fontSize: 15, // should be ignored since font-size requires unit
183+
fontSize: null, // invalid value should be ignored
182184
opacity: 0.5
183185
})
184186
).toBe(`opacity:0.5;`)

‎packages/shared/src/domAttrConfig.ts

-15
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,6 @@ export const propsToAttrMap: Record<string, string | undefined> = {
5353
httpEquiv: 'http-equiv'
5454
}
5555

56-
/**
57-
* CSS properties that accept plain numbers
58-
*/
59-
export const isNoUnitNumericStyleProp = /*#__PURE__*/ makeMap(
60-
`animation-iteration-count,border-image-outset,border-image-slice,` +
61-
`border-image-width,box-flex,box-flex-group,box-ordinal-group,column-count,` +
62-
`columns,flex,flex-grow,flex-positive,flex-shrink,flex-negative,flex-order,` +
63-
`grid-row,grid-row-end,grid-row-span,grid-row-start,grid-column,` +
64-
`grid-column-end,grid-column-span,grid-column-start,font-weight,line-clamp,` +
65-
`line-height,opacity,order,orphans,tab-size,widows,z-index,zoom,` +
66-
// SVG
67-
`fill-opacity,flood-opacity,stop-opacity,stroke-dasharray,stroke-dashoffset,` +
68-
`stroke-miterlimit,stroke-opacity,stroke-width`
69-
)
70-
7156
/**
7257
* Known attributes, this is used for stringification of runtime static nodes
7358
* so that we don't stringify bindings that cannot be set from HTML.

‎packages/shared/src/normalizeProp.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { isArray, isString, isObject, hyphenate } from './'
2-
import { isNoUnitNumericStyleProp } from './domAttrConfig'
32

43
export type NormalizedStyle = Record<string, string | number>
54

@@ -51,10 +50,7 @@ export function stringifyStyle(
5150
for (const key in styles) {
5251
const value = styles[key]
5352
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key)
54-
if (
55-
isString(value) ||
56-
(typeof value === 'number' && isNoUnitNumericStyleProp(normalizedKey))
57-
) {
53+
if (isString(value) || typeof value === 'number') {
5854
// only render valid values
5955
ret += `${normalizedKey}:${value};`
6056
}

0 commit comments

Comments
 (0)
Please sign in to comment.