@artsy/palette-mobile 19.0.0 → 19.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -2
- package/dist/elements/Tabs/TabMasonry.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,10 +55,22 @@ yarn install:all
|
|
|
55
55
|
Run using:
|
|
56
56
|
|
|
57
57
|
```sh
|
|
58
|
-
yarn
|
|
58
|
+
yarn ios
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
or
|
|
62
|
+
|
|
63
|
+
```sh
|
|
64
|
+
yarn android
|
|
59
65
|
```
|
|
60
66
|
|
|
61
|
-
|
|
67
|
+
⚠️ Temporary workaround until we move Expo into an example directory:
|
|
68
|
+
|
|
69
|
+
For local development, remove the line from package.json:
|
|
70
|
+
|
|
71
|
+
`"main": "dist/index.js"`
|
|
72
|
+
|
|
73
|
+
Make sure to add it back before committing.
|
|
62
74
|
|
|
63
75
|
## Developing Features using Local Versions of Palette
|
|
64
76
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MasonryFlashListProps, MasonryFlashListRef } from "@shopify/flash-list";
|
|
2
|
-
import {
|
|
2
|
+
import { Ref } from "react";
|
|
3
3
|
export declare function TabMasonry<T>(props: MasonryFlashListProps<T> & {
|
|
4
|
-
innerRef?:
|
|
4
|
+
innerRef?: Ref<MasonryFlashListRef<T>> | null;
|
|
5
5
|
}): import("react/jsx-runtime").JSX.Element;
|