Skip to content

Commit fae070a

Browse files
ci(release): publish latest release
1 parent 3898a3f commit fae070a

File tree

853 files changed

+30421
-13527
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

853 files changed

+30421
-13527
lines changed

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jest.config.js
2323
metro.config.js
2424
node_modules
2525
types
26+
**/coverage/**
2627

2728
# app/package specific
2829

@@ -47,3 +48,5 @@ packages/eslint-config/restrictedImports.js
4748
# generated
4849

4950
packages/uniswap/src/data/rest/conversionTracking/api
51+
**/storybook-static/
52+
**/lcov-report/

.yarn/patches/@gorhom-bottom-sheet-npm-4.5.1-d8ef5d483d.patch .yarn/patches/@gorhom-bottom-sheet-npm-4.6.4-5b2c27bb1f.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
diff --git a/src/components/bottomSheet/BottomSheet.tsx b/src/components/bottomSheet/BottomSheet.tsx
2-
index 1050af591cedd3395c3f21553f9b125d85ca9d11..0761eb562be2af0ebccfda02f06a9ec79289d4ae 100644
2+
index cd6ea6bfbace8e9e0b5f0759d4dc7559d48d248f..3248773a3beab478143d3c9d13a47ff6ffd712f2 100644
33
--- a/src/components/bottomSheet/BottomSheet.tsx
44
+++ b/src/components/bottomSheet/BottomSheet.tsx
5-
@@ -501,7 +501,7 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
5+
@@ -527,7 +527,7 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
66
animatedAnimationSource.value === ANIMATION_SOURCE.SNAP_POINT_CHANGE &&
77
animatedAnimationState.value === ANIMATION_STATE.RUNNING
88
) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
diff --git a/registry.js b/registry.js
2+
index 64b2735d3bb5284bd2450bf0d06115c3de5dcf80..4121e73b39a1c5d72144dcc98c1187641ab7a4f8 100644
3+
--- a/registry.js
4+
+++ b/registry.js
5+
@@ -8,8 +8,9 @@
6+
* @format
7+
*/
8+
9+
-'use strict';
10+
+"use strict";
11+
12+
+/*::
13+
export type AssetDestPathResolver = 'android' | 'generic';
14+
15+
export type PackagerAsset = {
16+
@@ -25,17 +26,17 @@ export type PackagerAsset = {
17+
+resolver?: AssetDestPathResolver,
18+
...
19+
};
20+
+*/
21+
+const assets /*::: Array<PackagerAsset>*/ = [];
22+
23+
-const assets: Array<PackagerAsset> = [];
24+
-
25+
-function registerAsset(asset: PackagerAsset): number {
26+
+function registerAsset(asset /*::: PackagerAsset*/) /*::: number*/ {
27+
// `push` returns new array length, so the first asset will
28+
// get id 1 (not 0) to make the value truthy
29+
return assets.push(asset);
30+
}
31+
32+
-function getAssetByID(assetId: number): PackagerAsset {
33+
+function getAssetByID(assetId /*::: number*/) /*::: PackagerAsset*/ {
34+
return assets[assetId - 1];
35+
}
36+
37+
-module.exports = {registerAsset, getAssetByID};
38+
+module.exports = { registerAsset, getAssetByID };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
diff --git a/.gradle/vcs-1/gc.properties b/.gradle/vcs-1/gc.properties
2+
new file mode 100644
3+
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
4+
diff --git a/settings-plugin/src/main/kotlin/com/facebook/react/ReactSettingsExtension.kt b/settings-plugin/src/main/kotlin/com/facebook/react/ReactSettingsExtension.kt
5+
index be26a2233799ef738c8b77bd3a4363ff363eb9e0..9e7abdb30cfa28eb0a8eac08a5188808c31c1d9b 100644
6+
--- a/settings-plugin/src/main/kotlin/com/facebook/react/ReactSettingsExtension.kt
7+
+++ b/settings-plugin/src/main/kotlin/com/facebook/react/ReactSettingsExtension.kt
8+
@@ -28,7 +28,7 @@ abstract class ReactSettingsExtension @Inject constructor(val settings: Settings
9+
settings.layout.rootDirectory.file("build/generated/autolinking/").asFile
10+
11+
private val defaultConfigCommand: List<String> =
12+
- windowsAwareCommandLine(listOf("npx", "@react-native-community/cli", "config")).map {
13+
+ windowsAwareCommandLine(listOf("node", "../../node_modules/@react-native-community/cli/build/bin.js", "config")).map {
14+
it.toString()
15+
}
16+

.yarn/patches/expo-local-authentication-npm-13.8.0-3a1b5c983f.patch

-136
This file was deleted.

.yarn/patches/expo-screen-capture-npm-5.8.1-78e5827fdf.patch

-11
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
diff --git a/lib/module/createAnimatedComponent/createAnimatedComponent.js b/lib/module/createAnimatedComponent/createAnimatedComponent.js
2+
index 69682cb3b85d04d83ae29dc8d07e16204e62b29c..62fe52439729a7280c1fc5d33addc53fd367a5ca 100644
3+
--- a/lib/module/createAnimatedComponent/createAnimatedComponent.js
4+
+++ b/lib/module/createAnimatedComponent/createAnimatedComponent.js
5+
@@ -392,8 +392,10 @@ export function createAnimatedComponent(Component, options) {
6+
const skipEntering = this.context?.current;
7+
const nativeID = skipEntering || !isFabric() ? undefined : `${this.reanimatedID}`;
8+
const jestProps = IS_JEST ? {
9+
- jestInlineStyle: this.props.style,
10+
- jestAnimatedStyle: this.jestAnimatedStyle
11+
+ // In react-native-reanimated 3.16.0>, there's a bug that generates components infinitely, because of the circular reference in jestAnimatedStyle.
12+
+ // To fix this, let's temporarily not pass the jestAnimatedStyle to the component.
13+
+ // jestInlineStyle: this.props.style,
14+
+ // jestAnimatedStyle: this.jestAnimatedStyle
15+
} : {};
16+
return /*#__PURE__*/React.createElement(Component, _extends({
17+
nativeID: nativeID
18+
diff --git a/lib/module/jestUtils.js b/lib/module/jestUtils.js
19+
index 09310c12af916c38bb51f6297a08fc880c1ede67..d41a4a07978ea9ce18d88a5bcad9dd8b03d65b22 100644
20+
--- a/lib/module/jestUtils.js
21+
+++ b/lib/module/jestUtils.js
22+
@@ -6,7 +6,7 @@ import { ReanimatedError } from "./errors.js";
23+
const defaultFramerateConfig = {
24+
fps: 60
25+
};
26+
-const isEmpty = obj => Object.keys(obj).length === 0;
27+
+const isEmpty = (obj = {}) => Object.keys(obj).length === 0;
28+
const getStylesFromObject = obj => {
29+
return obj === undefined ? {} : Object.fromEntries(Object.entries(obj).map(([property, value]) => [property, value._isReanimatedSharedValue ? value.value : value]));
30+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
diff --git a/src/TabBar.tsx b/src/TabBar.tsx
2+
index e8d0b4c8dcbbe779fcd304f483d2d91c2d5e8dde..4205e8e286d501992c201d179e80866724924678 100644
3+
--- a/src/TabBar.tsx
4+
+++ b/src/TabBar.tsx
5+
@@ -364,8 +364,7 @@ export function TabBar<T extends Route>({
6+
7+
const renderItem = React.useCallback(
8+
({ item: route, index }: ListRenderItemInfo<T>) => {
9+
- const props: TabBarItemProps<T> & { key: string } = {
10+
- key: route.key,
11+
+ const props: TabBarItemProps<T> = {
12+
position: position,
13+
route: route,
14+
navigationState: navigationState,
15+
@@ -446,7 +445,7 @@ export function TabBar<T extends Route>({
16+
<>
17+
{gap > 0 && index > 0 ? <Separator width={gap} /> : null}
18+
{renderTabBarItem ? (
19+
- renderTabBarItem(props)
20+
+ renderTabBarItem({ key: route.key, ...props })
21+
) : (
22+
<TabBarItem {...props} />
23+
)}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
diff --git a/config/jest/fileTransform.js b/config/jest/fileTransform.js
2+
index aab67618c38b46485f28d18bd81f7125383037ed..95c34bb742cf15e8da436d412bcbf623c8185e0b 100644
3+
--- a/config/jest/fileTransform.js
4+
+++ b/config/jest/fileTransform.js
5+
@@ -1,7 +1,7 @@
6+
-'use strict';
7+
+"use strict";
8+
9+
-const path = require('path');
10+
-const camelcase = require('camelcase');
11+
+const path = require("path");
12+
+const camelcase = require("camelcase");
13+
14+
// This is a custom Jest transformer turning file imports into filenames.
15+
// http://facebook.github.io/jest/docs/en/webpack.html
16+
@@ -17,7 +17,8 @@ module.exports = {
17+
pascalCase: true,
18+
});
19+
const componentName = `Svg${pascalCaseFilename}`;
20+
- return `const React = require('react');
21+
+ return {
22+
+ code: `const React = require('react');
23+
module.exports = {
24+
__esModule: true,
25+
default: ${assetFilename},
26+
@@ -32,9 +33,12 @@ module.exports = {
27+
})
28+
};
29+
}),
30+
- };`;
31+
+ };`,
32+
+ };
33+
}
34+
35+
- return `module.exports = ${assetFilename};`;
36+
+ return {
37+
+ code: `module.exports = ${assetFilename};`,
38+
+ };
39+
},
40+
};

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @uniswap/web-admins

0 commit comments

Comments
 (0)