forked from necolas/react-native-web
-
Notifications
You must be signed in to change notification settings - Fork 14
Sync Fork with Upstream #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
Bumps [webpack](https://github.com/webpack/webpack) from 5.73.0 to 5.76.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.73.0...v5.76.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]>
* Support React 18 concurrency and constraints. * Add new render / hydrate functions. * Remove uses of findNodeHandle. * Expose ability to unmount an application once ran. Fix necolas#1529 Close necolas#2330
Encourage use of existing array syntax for multiple styles. Eventually we'll want to remove the compose() API to simplify the overall styling API.
And remove deprecated AppState.removeListener API Fix necolas#2378
Previously deprecated, and not supported in the React Native Fabric architecture. Close necolas#1935
Animated should now work with compiled and extracted styles. The original styles are passed to components, rather than being flattened into a new object that cannot be used by the style runtime to either lookup the results of StyleSheet.create calls or consume extracted styles. Inline styles that use AnimatedValue are moved into a seperate object that is appended to the original styles. Fix necolas#2387
The resizeMode and tintColor props should be used instead. The styles will be removed in a future release. Fix necolas#2383
These components have been replaced by Pressable and will be removed from React Native. Fix necolas#2382
Port ScrollView from legacy createReactClass to ES6 Class syntax.
* Add support for 'aria-*' and 'role' props. * Add support for 'id' and 'tabIndex' props. * Add support for 'pointerEvents' and 'userSelect' styles. * Deprecate 'accessibility*' props. * Deprecate 'nativeId' and 'focusable' props. * Deprecate 'pointerEvents' and 'selectable' props. Ref necolas#2379
* Add support for 'enterKeyHint' prop. * Add support for 'inputMode' prop. * Add support for 'readOnly' prop. * Add support for 'rows' prop. * Deprecate 'keyboardType' prop. * Deprecate 'returnKeyType' prop. * Deprecate 'editable' prop. * Deprecate 'numberOfLines' prop. Ref necolas#2379
* Add support for space-separated values. * Deprecate array values. Ref necolas#2379
* Add support for verticalAlign style. * Deprecate textAlignVertical style. Ref necolas#2379
Use space-separated values per W3C standard. Ref necolas#2379
* Support logical styles like 'marginInlineStart' and 'insetInlineStart' via polyfills. * Deprecate non-standard 'marginStart' etc. properties. Ref necolas#2379
This patch reorganizes the style compiler so that the 'preprocess' step is responsible for all the work needed to transform any non-standard CSS from React Native into a form that can be 'compiled' to rules for the CSSStyleSheet. Over time the 'preprocess' step should eventually be unnecessary as React Native aligns its APIs with CSS APIs. And any external style compilers should be able to run the 'preprocess' function over the style input to produce valid CSS as input for the compiler.
Adds support for PointerEvent prop handlers and removes `onClickCapture`. Ref necolas#2377
Match default Text rendering in React Native. Fix necolas#2498
Set textAlign on the default Text element. Prevents inheritance of textAlign set on a parent View. Fix necolas#2498
# Conflicts: # package-lock.json # packages/react-native-web/src/exports/Image/index.js # packages/react-native-web/src/exports/Image/types.js
Size change: +4.09 kB
View unchanged
|
AndrewGable
approved these changes
Mar 28, 2023
6 tasks
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.
Resolved comments in image component, image component types, and package-lock.json. For package-lock.json I just accepted the upstream, did another
npm i
, then there was no diff.