@artsy/palette-mobile 19.6.0 → 19.7.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 CHANGED
@@ -45,9 +45,20 @@ If you'd like to add a new component to Palette please create an issue using the
45
45
 
46
46
  ## Local development
47
47
 
48
+ ```sh
49
+ mise install
50
+ ```
51
+
52
+ If you are still using asdf:
53
+
54
+ ```sh
55
+ asdf install
56
+ ```
57
+
48
58
  Set up using:
49
59
 
50
60
  ```sh
61
+ yarn install
51
62
  yarn setup:artsy
52
63
  yarn install:all
53
64
  ```
@@ -2,7 +2,7 @@
2
2
  /// <reference types="react" />
3
3
  import { EventEmitter } from "events";
4
4
  import { TextInput, TextInputProps } from "react-native";
5
- export declare const inputEvents: EventEmitter;
5
+ export declare const inputEvents: EventEmitter<[never]>;
6
6
  export declare const emitInputClearEvent: () => void;
7
7
  export interface InputProps extends Omit<TextInputProps, "placeholder" | "onChangeText"> {
8
8
  addClearListener?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "19.6.0",
3
+ "version": "19.7.0",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "expo run:android --port 8082",
@@ -138,7 +138,7 @@
138
138
  "@types/react": "18.3.12"
139
139
  },
140
140
  "engines": {
141
- "yarn": "1.x"
141
+ "yarn": "4.x"
142
142
  },
143
143
  "files": [
144
144
  "dist"
@@ -167,5 +167,5 @@
167
167
  "prettier --write --ignore-unknown"
168
168
  ]
169
169
  },
170
- "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
170
+ "packageManager": "yarn@4.10.0"
171
171
  }