expo-dev-menu-interface 55.0.0 → 55.0.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.
@@ -4,7 +4,7 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '55.0.0'
7
+ version = '55.0.1'
8
8
 
9
9
  expoModule {
10
10
  canBePublished false
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.interfaces.devmenu"
15
15
  defaultConfig {
16
16
  versionCode 6
17
- versionName '55.0.0'
17
+ versionName '55.0.1'
18
18
  }
19
19
  }
20
20
 
@@ -18,4 +18,10 @@ public protocol DevMenuHostDelegate: NSObjectProtocol {
18
18
  Optional function to toggle the element inspector.
19
19
  */
20
20
  @objc optional func devMenuToggleElementInspector()
21
+
22
+ /**
23
+ Optional function to control whether the "Open React Native dev menu" option is shown.
24
+ Defaults to `true` if not implemented.
25
+ */
26
+ @objc optional func devMenuShouldShowReactNativeDevMenu() -> Bool
21
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu-interface",
3
- "version": "55.0.0",
3
+ "version": "55.0.1",
4
4
  "description": "Interface for expo-dev-menu",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -25,5 +25,5 @@
25
25
  "peerDependencies": {
26
26
  "expo": "*"
27
27
  },
28
- "gitHead": "6b424b7810c62417bb53f7e3d4e18a25403dbfeb"
28
+ "gitHead": "220594d473a3100248087151004ae4acb7282d5f"
29
29
  }