Describe the issue
The documentation states that outline* style props should be supported (and have built-in React Native support) - https://github.com/facebook/react-strict-dom/blob/05226645531de66ae8d0f06c48c10e0526dfd438/packages/website/docs/api/02-css/index.md?plain=1#L202-L205
In reality in React Native, they're properly parsed only if criteria for version.experimental are met: https://github.com/facebook/react-strict-dom/blob/05226645531de66ae8d0f06c48c10e0526dfd438/packages/react-strict-dom/src/native/css/isAllowedStyleKey.js#L170-L175
Expected behavior
outline* styles are correctly parsed as they're long-present functionality of RN (available since 0.77) or alternatively documentation provides correct information and specifies how to turn on the experimental support
Steps to reproduce
RSD version: 0.0.55
React Native version: 0.84.0
React version: 19.2.3
Browser: Google Chrome
- Define CSS styles using outline properties:
const styles = css.create({
test: {
outlineColor: "#000000",
outlineWidth: 1,
outlineStyle: "solid",
});
- Apply them to a component:
<html.div style={styles.test}>...</html.div>
-
Render the component in a React Native app and observe how the styles are rendered
-
(Optionally) console.log the resolved styles - the outline properties will be excluded
Test case
No response
Additional comments
No response
Describe the issue
The documentation states that
outline*style props should be supported (and have built-in React Native support) - https://github.com/facebook/react-strict-dom/blob/05226645531de66ae8d0f06c48c10e0526dfd438/packages/website/docs/api/02-css/index.md?plain=1#L202-L205In reality in React Native, they're properly parsed only if criteria for
version.experimentalare met: https://github.com/facebook/react-strict-dom/blob/05226645531de66ae8d0f06c48c10e0526dfd438/packages/react-strict-dom/src/native/css/isAllowedStyleKey.js#L170-L175Expected behavior
outline*styles are correctly parsed as they're long-present functionality of RN (available since 0.77) or alternatively documentation provides correct information and specifies how to turn on the experimental supportSteps to reproduce
RSD version: 0.0.55
React Native version: 0.84.0
React version: 19.2.3
Browser: Google Chrome
Render the component in a React Native app and observe how the styles are rendered
(Optionally) console.log the resolved styles - the outline properties will be excluded
Test case
No response
Additional comments
No response