@momo-kits/suggest-action 0.157.1-beta.3 → 0.157.2-test.1

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,6 +14,7 @@ import {
14
14
  Image,
15
15
  Shadow,
16
16
  Text,
17
+ useScreenRegistry,
17
18
  } from '@momo-kits/foundation';
18
19
  import styles from './styles';
19
20
 
@@ -34,6 +35,7 @@ const SuggestAction: ForwardRefRenderFunction<
34
35
  },
35
36
  ref
36
37
  ) => {
38
+ useScreenRegistry('SuggestAction');
37
39
  const {theme} = useContext(ApplicationContext);
38
40
  const opacity = useRef(new Animated.Value(0)).current;
39
41
 
@@ -120,5 +122,7 @@ const SuggestAction: ForwardRefRenderFunction<
120
122
  );
121
123
  };
122
124
 
123
- export default forwardRef(SuggestAction);
125
+ const ForwardedSuggestAction = forwardRef(SuggestAction);
126
+ ForwardedSuggestAction.displayName = 'SuggestAction';
127
+ export default ForwardedSuggestAction;
124
128
  export type {SuggestActionRef, SuggestActionProps};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/suggest-action",
3
- "version": "0.157.1-beta.3",
3
+ "version": "0.157.2-test.1",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "peerDependencies": {