You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ would like to use.
94
94
| ✔ | 🔧 |[solid/prefer-for](docs/prefer-for.md)| Enforce using Solid's `<For />` component for mapping an array to JSX elements. |
95
95
| ✔ | 🔧 |[solid/prefer-show](docs/prefer-show.md)| Enforce using Solid's `<Show />` component for conditionally showing content. |
96
96
| ✔ ||[solid/reactivity](docs/reactivity.md)| Enforce that reactive expressions (props, signals, memos, etc.) are only used in tracked scopes; otherwise, they won't update the view as expected. |
97
-
| ✔ | 🔧 |[solid/style-prop](docs/style-prop.md)| Require CSS properties in the `style` prop to be valid and kebab-cased (ex. 'font-size'), not camel-cased (ex. 'fontSize') like in React, and that property values are strings, not numbers with implicit 'px' units. |
97
+
| ✔ | 🔧 |[solid/style-prop](docs/style-prop.md)| Require CSS properties in the `style` prop to be valid and kebab-cased (ex. 'font-size'), not camel-cased (ex. 'fontSize') like in React, and that property values with dimensions are strings, not numbers with implicit 'px' units. |
Copy file name to clipboardExpand all lines: docs/style-prop.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<!-- AUTO-GENERATED-CONTENT:START (HEADER) -->
2
2
# solid/style-prop
3
-
Require CSS properties in the `style` prop to be valid and kebab-cased (ex. 'font-size'), not camel-cased (ex. 'fontSize') like in React, and that property values are strings, not numbers with implicit 'px' units.
3
+
Require CSS properties in the `style` prop to be valid and kebab-cased (ex. 'font-size'), not camel-cased (ex. 'fontSize') like in React, and that property values with dimensions are strings, not numbers with implicit 'px' units.
0 commit comments