react-native-windows
react-native-windows copied to clipboard
A framework for building native Windows apps with React.
### Problem Description onChangeText should only fire once when typing a singe character. But when first typing on a TextInput, onChangeText will fire twice. See below for log of events...
This PR implements support for the `writingDirection` property in the Fabric Text component, bringing React Native Windows to parity with the documented React Native Text API. ## Changes - Added...
This PR implements the missing `onPressOut` event emission for TextInput in the React Native Windows fabric implementation. ## Problem The `onPressOut` property was available in RNW Paper via TextInputViewManager but...
Implement the onScroll property for the fabric implementation of TextInput. This property was available in RNW Paper via TextInputViewManager. See https://reactnative.dev/docs/textinput#onscroll for details.
Implement the scrollEnabled property for the fabric implementation of TextInput. This property was available in RNW Paper via TextInputViewManager. See https://reactnative.dev/docs/textinput#scrollenabled-ios for details.
Bumps [brace-expansion](https://github.com/juliangruber/brace-expansion) from 1.1.11 to 1.1.12. Release notes Sourced from brace-expansion's releases. v1.1.12 pkg: publish on tag 1.x c460dbd fmt ccb8ac6 Fix potential ReDoS Vulnerability or Inefficient Regular Expression (#65)...
This PR adds a new functional test to validate that View components properly update their styles during fast refresh scenarios, addressing a gap in the E2E test coverage for the...
This PR adds comprehensive functional tests for the FlatList component to validate core functionality that developers typically verify during fast refresh workflows. ## Added Tests The following functional tests have...
This PR adds comprehensive functional tests for the TextInput component in the E2E test app (Fabric) to validate key functionality scenarios as outlined in the issue. ## Changes Made Added...
### Problem Description Upstream added the following methods to their RuntimeAgent (see linked commits) and our HermesRuntimeHolder would need to implement these methods. - enableSamplingProfiler - disableSamplingProfiler - collectSamplingProfile Currently...