Skip to content

Commit 19c10ad

Browse files
author
Pavel Aksonov
committed
adopt RNRF for iPhone 12, publish version 4.3.0
1 parent 8318411 commit 19c10ad

File tree

7 files changed

+164
-62
lines changed

7 files changed

+164
-62
lines changed

.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Example/
22
ReduxExample/
33
.idea/
4-
4+
examples/
55
.babelrc

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
## Getting Started
2828

29-
1. Install native dependencies used by React Native Router (https://reactnavigation.org/docs/en/getting-started.html)
29+
1. Install native dependencies used by RNRF (see below, https://reactnavigation.org/docs/en/getting-started.html)
3030
2. Install this component
3131

3232
```sh
@@ -37,6 +37,10 @@ yarn add react-native-router-flux
3737
1. react-native-screens by ( ``` npm install react-native-screens || yarn add react-native-screens ```)
3838
2. react-native-gesture-handler ( ``` npm install react-native-gesture-handler || yarn add react-native-gesture-handler ```)
3939
3. react-native-reanimated (``` npm install react-native-reanimated || yarn add react-native-reanimated ```)
40+
4. react-native-safe-area-context (``` npm install react-native-safe-area-context || yarn add react-native-react-native-safe-area-context ```)
41+
5. @react-native-community/masked-view (``` npm install @react-native-community/masked-view || yarn add @react-native-community/masked-view ```)
42+
43+
4044

4145
## Usage
4246

examples/react-native/ios/Podfile.lock

+16-4
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ PODS:
236236
- React-cxxreact (= 0.63.0)
237237
- React-jsi (= 0.63.0)
238238
- React-jsinspector (0.63.0)
239+
- react-native-safe-area-context (3.2.0):
240+
- React-Core
239241
- React-RCTActionSheet (0.63.0):
240242
- React-Core/RCTActionSheetHeaders (= 0.63.0)
241243
- React-RCTAnimation (0.63.0):
@@ -296,12 +298,14 @@ PODS:
296298
- React-Core (= 0.63.0)
297299
- React-cxxreact (= 0.63.0)
298300
- React-jsi (= 0.63.0)
301+
- RNCMaskedView (0.1.10):
302+
- React
299303
- RNGestureHandler (1.6.1):
300304
- React
301305
- RNReanimated (1.9.0):
302306
- React
303-
- RNScreens (2.9.0):
304-
- React
307+
- RNScreens (2.18.1):
308+
- React-Core
305309
- Yoga (1.14.0)
306310
- YogaKit (1.18.1):
307311
- Yoga (~> 1.14)
@@ -343,6 +347,7 @@ DEPENDENCIES:
343347
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
344348
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
345349
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
350+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
346351
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
347352
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
348353
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
@@ -353,6 +358,7 @@ DEPENDENCIES:
353358
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
354359
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
355360
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
361+
- "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
356362
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
357363
- RNReanimated (from `../node_modules/react-native-reanimated`)
358364
- RNScreens (from `../node_modules/react-native-screens`)
@@ -404,6 +410,8 @@ EXTERNAL SOURCES:
404410
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
405411
React-jsinspector:
406412
:path: "../node_modules/react-native/ReactCommon/jsinspector"
413+
react-native-safe-area-context:
414+
:path: "../node_modules/react-native-safe-area-context"
407415
React-RCTActionSheet:
408416
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
409417
React-RCTAnimation:
@@ -424,6 +432,8 @@ EXTERNAL SOURCES:
424432
:path: "../node_modules/react-native/Libraries/Vibration"
425433
ReactCommon:
426434
:path: "../node_modules/react-native/ReactCommon"
435+
RNCMaskedView:
436+
:path: "../node_modules/@react-native-community/masked-view"
427437
RNGestureHandler:
428438
:path: "../node_modules/react-native-gesture-handler"
429439
RNReanimated:
@@ -460,6 +470,7 @@ SPEC CHECKSUMS:
460470
React-jsi: 254710f3a97e587427bfbf3011dacec2af66a1fc
461471
React-jsiexecutor: 0e0cb4e170ca72d4bb1179843d08dcbea3d100ac
462472
React-jsinspector: fc661eff8edbfb7e22119382c13f33bcadde0f3c
473+
react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
463474
React-RCTActionSheet: aadd91a1d6cbfae50dd41f140004f816e9e47ade
464475
React-RCTAnimation: 7fa2ef6c0ef1e3f0b7d2261c827ec94412deb5e6
465476
React-RCTBlob: ccbbc70295aee3a76a70323b48f63fb7a7fcffd6
@@ -470,12 +481,13 @@ SPEC CHECKSUMS:
470481
React-RCTText: ba503bf4cce41881ca258ba789c33e017955efdd
471482
React-RCTVibration: 77ab1cf4a5eb854b88ad5ed3e9d8509ed124525e
472483
ReactCommon: f63556ee9e41e9802257228237e5e660451a03cf
484+
RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
473485
RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38
474486
RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43
475-
RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da
487+
RNScreens: f7ad633b2e0190b77b6a7aab7f914fad6f198d8d
476488
Yoga: 7d2edc5b410474191962e6dee88ee67f9b328b6b
477489
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
478490

479491
PODFILE CHECKSUM: e25a4f49fb371e2f341db9dc0893d6e999552221
480492

481-
COCOAPODS: 1.8.4
493+
COCOAPODS: 1.10.1

examples/react-native/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616
"react-native-gesture-handler": "^1.6.1",
1717
"react-native-message-bar": "^2.0.10",
1818
"react-native-reanimated": "^1.9.0",
19-
"react-native-router-flux": "^4.2.0",
20-
"react-native-screens": "^2.9.0"
19+
"react-native-router-flux": "^4.3.0",
20+
"@react-native-community/masked-view": "^0.1.10",
21+
"react-native-safe-area-context": "^3.2.0",
22+
"react-native-screens": "^2.18.1"
2123
},
2224
"devDependencies": {
2325
"@babel/core": "^7.10.4",

examples/react-native/yarn.lock

+71-27
Original file line numberDiff line numberDiff line change
@@ -1127,6 +1127,11 @@
11271127
resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.1.0.tgz#e42b1bef12d2415411519fd528e64b593b1363dc"
11281128
integrity sha512-W/J0fNYVO01tioHjvYWQ9m6RgndVtbElzYozBq1ZPrHO/iCzlqoySHl4gO/fpCl9QEFjvJfjPgtPMTMlsoq5DQ==
11291129

1130+
"@react-native-community/masked-view@^0.1.10":
1131+
version "0.1.10"
1132+
resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.10.tgz#5dda643e19e587793bc2034dd9bf7398ad43d401"
1133+
integrity sha512-rk4sWFsmtOw8oyx8SD3KSvawwaK7gRBSEIy2TAwURyGt+3TizssXP1r8nx3zY+R7v2vYYHXZ+k2/GULAT/bcaQ==
1134+
11301135
"@react-navigation/core@^3.7.6":
11311136
version "3.7.6"
11321137
resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-3.7.6.tgz#e0244fcdc22937825b252197f70308bbe5709c58"
@@ -2093,7 +2098,7 @@ collection-visit@^1.0.0:
20932098
map-visit "^1.0.0"
20942099
object-visit "^1.0.0"
20952100

2096-
color-convert@^1.9.0:
2101+
color-convert@^1.9.0, color-convert@^1.9.1:
20972102
version "1.9.3"
20982103
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
20992104
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
@@ -2112,16 +2117,32 @@ [email protected]:
21122117
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
21132118
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
21142119

2115-
color-name@~1.1.4:
2120+
color-name@^1.0.0, color-name@~1.1.4:
21162121
version "1.1.4"
21172122
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
21182123
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
21192124

2125+
color-string@^1.5.4:
2126+
version "1.5.5"
2127+
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014"
2128+
integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==
2129+
dependencies:
2130+
color-name "^1.0.0"
2131+
simple-swizzle "^0.2.2"
2132+
21202133
color-support@^1.1.3:
21212134
version "1.1.3"
21222135
resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
21232136
integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
21242137

2138+
color@^3.1.3:
2139+
version "3.1.3"
2140+
resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e"
2141+
integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==
2142+
dependencies:
2143+
color-convert "^1.9.1"
2144+
color-string "^1.5.4"
2145+
21252146
colorette@^1.0.7:
21262147
version "1.2.1"
21272148
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
@@ -3479,6 +3500,11 @@ is-arrayish@^0.2.1:
34793500
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
34803501
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
34813502

3503+
is-arrayish@^0.3.1:
3504+
version "0.3.2"
3505+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
3506+
integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
3507+
34823508
is-buffer@^1.1.5:
34833509
version "1.1.6"
34843510
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
@@ -5690,6 +5716,11 @@ react-native-gesture-handler@^1.6.1:
56905716
invariant "^2.2.4"
56915717
prop-types "^15.7.2"
56925718

5719+
react-native-iphone-x-helper@^1.3.0:
5720+
version "1.3.1"
5721+
resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz#20c603e9a0e765fd6f97396638bdeb0e5a60b010"
5722+
integrity sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==
5723+
56935724
react-native-message-bar@^2.0.10:
56945725
version "2.0.10"
56955726
resolved "https://registry.yarnpkg.com/react-native-message-bar/-/react-native-message-bar-2.0.10.tgz#34632bdf2cbfe0f51ae4f1e9a91c42b4394a11c2"
@@ -5702,10 +5733,10 @@ react-native-reanimated@^1.9.0:
57025733
dependencies:
57035734
fbjs "^1.0.0"
57045735

5705-
react-native-router-flux@^4.2.0:
5706-
version "4.2.0"
5707-
resolved "https://registry.yarnpkg.com/react-native-router-flux/-/react-native-router-flux-4.2.0.tgz#71c59f6a6250e9ed10d61ade506b9b809f879db0"
5708-
integrity sha512-ab6HZNKNfYhbk/UEiwSGOY6/lhikybOIGjL8CV9bQSLn2sNT1hkAJ1tRReQQVxHlgNI7N4oWfuH1ewk9rePsRA==
5736+
react-native-router-flux@^4.3.0-beta.7:
5737+
version "4.3.0-beta.7"
5738+
resolved "https://registry.yarnpkg.com/react-native-router-flux/-/react-native-router-flux-4.3.0-beta.7.tgz#5b76bc70cb885b2a2d1dc9ec5936fbac669f64b3"
5739+
integrity sha512-3AuUx578843MaT7tvVZrI86/3OMcUHaKcY8eMCdBDUFhj5MmwjTmltBYRg3OCnQeDJ5EVXJR7ToD6U1pAQCPuQ==
57095740
dependencies:
57105741
"@babel/runtime" "^7.6.0"
57115742
add "^2.0.6"
@@ -5715,26 +5746,31 @@ react-native-router-flux@^4.2.0:
57155746
prop-types "^15.6.2"
57165747
react-navigation "^4.x"
57175748
react-navigation-drawer "^2.2.1"
5718-
react-navigation-stack "^1.7.3"
5719-
react-navigation-tabs "^2.5.2"
5749+
react-navigation-stack "^2.10.2"
5750+
react-navigation-tabs "^2.10.1"
57205751
remove "^0.1.5"
57215752

5753+
react-native-safe-area-context@^3.2.0:
5754+
version "3.2.0"
5755+
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-3.2.0.tgz#06113c6b208f982d68ab5c3cebd199ca93db6941"
5756+
integrity sha512-k2Nty4PwSnrg9HwrYeeE+EYqViYJoOFwEy9LxL5RIRfoqxAq/uQXNGwpUg2/u4gnKpBbEPa9eRh15KKMe/VHkA==
5757+
57225758
react-native-safe-area-view@^0.14.9:
57235759
version "0.14.9"
57245760
resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.9.tgz#90ee8383037010d9a5055a97cf97e4c1da1f0c3d"
57255761
integrity sha512-WII/ulhpVyL/qbYb7vydq7dJAfZRBcEhg4/UWt6F6nAKpLa3gAceMOxBxI914ppwSP/TdUsandFy6lkJQE0z4A==
57265762
dependencies:
57275763
hoist-non-react-statics "^2.3.1"
57285764

5729-
react-native-screens@^2.9.0:
5730-
version "2.9.0"
5731-
resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-2.9.0.tgz#ead2843107ba00fee259aa377582e457c74f1f3b"
5732-
integrity sha512-5MaiUD6HA3nzY3JbVI8l3V7pKedtxQF3d8qktTVI0WmWXTI4QzqOU8r8fPVvfKo3MhOXwhWBjr+kQ7DZaIQQeg==
5765+
react-native-screens@^2.18.1:
5766+
version "2.18.1"
5767+
resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-2.18.1.tgz#47b9991c6f762d00d0ed3233e5283d523e859885"
5768+
integrity sha512-r5WZLpmx2hHjC1RgMdPq5YpSU9tEhBpUaZ5M1SUtNIONyiLqQVxabhRCINdebIk4depJiIl7yw2Q85zJyeX6fw==
57335769

5734-
react-native-tab-view@^2.11.0:
5735-
version "2.14.4"
5736-
resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-2.14.4.tgz#740007e62c8723c6813b8c8a05caaaf82c816620"
5737-
integrity sha512-oqkCflPFuZwDTbyY2WaN0377akSsmcttuYACR9LT7htZfO/tKR2Z/ynj1tbv2cz2esGuVICoga9cetN1lPimog==
5770+
react-native-tab-view@^2.15.2:
5771+
version "2.16.0"
5772+
resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-2.16.0.tgz#cae72c7084394bd328fac5fefb86cd966df37a86"
5773+
integrity sha512-ac2DmT7+l13wzIFqtbfXn4wwfgtPoKzWjjZyrK1t+T8sdemuUvD4zIt+UImg03fu3s3VD8Wh/fBrIdcqQyZJWg==
57385774

57395775
57405776
version "0.63.0"
@@ -5774,22 +5810,23 @@ react-navigation-drawer@^2.2.1:
57745810
resolved "https://registry.yarnpkg.com/react-navigation-drawer/-/react-navigation-drawer-2.5.0.tgz#6d2940fb6f9ae557b47a717203b4058194ae9665"
57755811
integrity sha512-wSsIdLYXYdi9wOOXGzaY4Hk/NIXaP8tClEpjlAPl1rhn3kU++gyJFcQ3xLsPWg0yRYq3y8jDPEWFFf81JqfP9Q==
57765812

5777-
react-navigation-stack@^1.7.3:
5778-
version "1.10.3"
5779-
resolved "https://registry.yarnpkg.com/react-navigation-stack/-/react-navigation-stack-1.10.3.tgz#e714e442b20427f0d2d3c18fce1f9e8cfe69be0b"
5780-
integrity sha512-1gksFi/g/Lg9sBhgLlD0OiEB5xnatHb4C0eNMA5tli9cTVlhq375XNPIqOiTyftibBmjdApAsZFj5srUCoOu/w==
5813+
react-navigation-stack@^2.10.2:
5814+
version "2.10.4"
5815+
resolved "https://registry.yarnpkg.com/react-navigation-stack/-/react-navigation-stack-2.10.4.tgz#377fd6533f8ae0cf5ca5a435a0115851f010306a"
5816+
integrity sha512-3LE1PFsFV9v4PUlZRATMotqs6H7MOOpIKtjyP+l8D1cyzYmsMQh3EFikeDfzGQUXIvy8VyLAMtcEssicQPYvFA==
57815817
dependencies:
5782-
prop-types "^15.7.2"
5818+
color "^3.1.3"
5819+
react-native-iphone-x-helper "^1.3.0"
57835820

5784-
react-navigation-tabs@^2.5.2:
5785-
version "2.9.0"
5786-
resolved "https://registry.yarnpkg.com/react-navigation-tabs/-/react-navigation-tabs-2.9.0.tgz#37407106f33367ff0ef3e5bb128d03f2721a50ef"
5787-
integrity sha512-+C9wyPtgxpEedhs1aX8pwtM7gJtpDMN3wPwq0jNkmONaurhb3hvE+mt3D7CLtX+zwxmMhcrPxSTSkynORKNn8g==
5821+
react-navigation-tabs@^2.10.1:
5822+
version "2.11.0"
5823+
resolved "https://registry.yarnpkg.com/react-navigation-tabs/-/react-navigation-tabs-2.11.0.tgz#fbea5c8154b6b1b86e1117a1184b98069c5b8bfa"
5824+
integrity sha512-mrnHfTVKVvoy5AWJY3vLt6cQLZQlVLgGUykTZerFBdTmxC/rFdsv+y2ec+rmSNy7u5nX+hlQBFvm/MIJ7w01wQ==
57885825
dependencies:
57895826
hoist-non-react-statics "^3.3.2"
57905827
react-lifecycles-compat "^3.0.4"
5791-
react-native-safe-area-view "^0.14.9"
5792-
react-native-tab-view "^2.11.0"
5828+
react-native-iphone-x-helper "^1.3.0"
5829+
react-native-tab-view "^2.15.2"
57935830

57945831
react-navigation@^4.x:
57955832
version "4.4.0"
@@ -6320,6 +6357,13 @@ simple-plist@^1.0.0:
63206357
bplist-parser "0.2.0"
63216358
plist "^3.0.1"
63226359

6360+
simple-swizzle@^0.2.2:
6361+
version "0.2.2"
6362+
resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
6363+
integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
6364+
dependencies:
6365+
is-arrayish "^0.3.1"
6366+
63236367
sisteransi@^1.0.4:
63246368
version "1.0.5"
63256369
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-router-flux",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "React Native Router using Flux architecture",
55
"repository": {
66
"type": "git",
@@ -30,8 +30,8 @@
3030
"prop-types": "^15.6.2",
3131
"react-navigation": "^4.x",
3232
"react-navigation-drawer": "^2.2.1",
33-
"react-navigation-stack": "^1.7.3",
34-
"react-navigation-tabs": "^2.5.2",
33+
"react-navigation-stack": "^2.10.2",
34+
"react-navigation-tabs": "^2.10.1",
3535
"remove": "^0.1.5"
3636
},
3737
"devDependencies": {
@@ -62,7 +62,6 @@
6262
"react-native": "0.56.0",
6363
"react-native-gesture-handler": "^1.4.1",
6464
"react-native-jest-mocks": "1.4.0",
65-
"react-native-reanimated": "^1.2.0",
6665
"react-test-renderer": "16.4.1"
6766
},
6867
"peerDependencies": {

0 commit comments

Comments
 (0)