@artsy/palette-mobile 17.6.0 → 17.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.
@@ -14,7 +14,7 @@ const TAB_BAR_HEIGHT = 50;
14
14
  const PillTabItem = ({ focusedTab: focusedTabProp, ...props }) => {
15
15
  const [focusedTab, setFocusedTab] = useState(focusedTabProp.value);
16
16
  // We want to debounce the focusedTab value to avoid showing two pills at once
17
- const debouncedFocusedTab = debounce(setFocusedTab, 30);
17
+ const debouncedFocusedTab = debounce(setFocusedTab, 50);
18
18
  useAnimatedReaction(() => focusedTabProp.value, (value) => {
19
19
  runOnJS(debouncedFocusedTab)(value);
20
20
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "17.6.0",
3
+ "version": "17.7.0",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "RCT_METRO_PORT=8082 react-native run-android --port 8082 --terminal terminal",