expo-dev-menu 55.0.4 → 55.0.6

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/CHANGELOG.md CHANGED
@@ -10,6 +10,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.6 — 2026-02-16
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - update labels for consistency ([#42825](https://github.com/expo/expo/pull/42825) by [@vonovak](https://github.com/vonovak))
18
+
19
+ ## 55.0.5 — 2026-02-08
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 55.0.4 — 2026-02-03
14
24
 
15
25
  ### 🐛 Bug fixes
@@ -12,7 +12,7 @@ apply plugin: 'expo-module-gradle-plugin'
12
12
  apply plugin: 'org.jetbrains.kotlin.plugin.compose'
13
13
 
14
14
  group = 'host.exp.exponent'
15
- version = '55.0.4'
15
+ version = '55.0.6'
16
16
 
17
17
  def hasDevLauncher = findProject(":expo-dev-launcher") != null
18
18
  def configureInRelease = findProperty("expo.devmenu.configureInRelease") == "true"
@@ -29,7 +29,7 @@ android {
29
29
 
30
30
  defaultConfig {
31
31
  versionCode 10
32
- versionName '55.0.4'
32
+ versionName '55.0.6'
33
33
  }
34
34
 
35
35
  buildTypes {
@@ -107,14 +107,14 @@ object MenuIcons {
107
107
  }
108
108
 
109
109
  @Composable
110
- fun Bug(
110
+ fun Code(
111
111
  size: Dp,
112
112
  tint: Color,
113
113
  modifier: Modifier = Modifier
114
114
  ) {
115
115
  Icon(
116
- painter = painterResource(R.drawable.bug),
117
- contentDescription = "JS debugger",
116
+ painter = painterResource(R.drawable.code_brackets),
117
+ contentDescription = "DevTools",
118
118
  tint = tint,
119
119
  modifier = Modifier
120
120
  .size(size)
@@ -38,7 +38,7 @@ fun ToolsSection(
38
38
  },
39
39
  content = {
40
40
  NewText(
41
- text = "Performance monitor"
41
+ text = "Toggle performance monitor"
42
42
  )
43
43
  },
44
44
  onClick = {
@@ -58,7 +58,7 @@ fun ToolsSection(
58
58
  },
59
59
  content = {
60
60
  NewText(
61
- text = "Element inspector"
61
+ text = "Toggle element inspector"
62
62
  )
63
63
  },
64
64
  onClick = {
@@ -71,14 +71,14 @@ fun ToolsSection(
71
71
  NewMenuButton(
72
72
  withSurface = false,
73
73
  icon = {
74
- MenuIcons.Bug(
74
+ MenuIcons.Code(
75
75
  size = 20.dp,
76
76
  tint = NewAppTheme.colors.icon.tertiary
77
77
  )
78
78
  },
79
79
  content = {
80
80
  NewText(
81
- text = "JS debugger"
81
+ text = "Open DevTools"
82
82
  )
83
83
  },
84
84
  onClick = {
@@ -126,7 +126,7 @@ fun ToolsSection(
126
126
  },
127
127
  content = {
128
128
  NewText(
129
- text = "Action button"
129
+ text = "Show dev menu button"
130
130
  )
131
131
  },
132
132
  rightComponent = {
@@ -0,0 +1,18 @@
1
+ <vector xmlns:android="http://schemas.android.com/apk/res/android"
2
+ android:width="20dp"
3
+ android:height="20dp"
4
+ android:viewportWidth="20"
5
+ android:viewportHeight="20">
6
+ <path
7
+ android:pathData="M7.5,5L2.5,10L7.5,15"
8
+ android:strokeColor="#8B8D98"
9
+ android:strokeWidth="1.67"
10
+ android:strokeLineCap="round"
11
+ android:strokeLineJoin="round"/>
12
+ <path
13
+ android:pathData="M12.5,5L17.5,10L12.5,15"
14
+ android:strokeColor="#8B8D98"
15
+ android:strokeWidth="1.67"
16
+ android:strokeLineCap="round"
17
+ android:strokeLineJoin="round"/>
18
+ </vector>
@@ -52,7 +52,7 @@ struct FabPill: View {
52
52
  }
53
53
 
54
54
  if showLabel {
55
- Text("Dev tools")
55
+ Text("Dev menu")
56
56
  .font(.system(size: 11, weight: .medium))
57
57
  .foregroundStyle(.secondary)
58
58
  .fixedSize()
@@ -36,7 +36,7 @@ struct DevMenuDeveloperTools: View {
36
36
 
37
37
  Divider()
38
38
  #endif
39
-
39
+
40
40
  DevMenuActionButton(
41
41
  title: "Toggle performance monitor",
42
42
  icon: "speedometer",
@@ -57,8 +57,8 @@ struct DevMenuDeveloperTools: View {
57
57
  Divider()
58
58
 
59
59
  DevMenuActionButton(
60
- title: "Open JS debugger",
61
- icon: "ladybug",
60
+ title: "Open DevTools",
61
+ icon: "chevron.left.chevron.right",
62
62
  action: viewModel.openJSInspector
63
63
  )
64
64
  }
@@ -79,7 +79,7 @@ struct DevMenuDeveloperTools: View {
79
79
  Divider()
80
80
 
81
81
  DevMenuToggleButton(
82
- title: "Show dev tools button",
82
+ title: "Show dev menu button",
83
83
  icon: "hand.tap",
84
84
  isEnabled: viewModel.showFloatingActionButton,
85
85
  action: viewModel.toggleFloatingActionButton
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "55.0.4",
3
+ "version": "55.0.6",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -37,15 +37,15 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "@babel/preset-typescript": "^7.7.4",
40
- "@testing-library/react-native": "^13.2.0",
40
+ "@testing-library/react-native": "^13.3.0",
41
41
  "babel-plugin-module-resolver": "^5.0.0",
42
- "babel-preset-expo": "~55.0.3",
42
+ "babel-preset-expo": "~55.0.5",
43
43
  "expo-module-scripts": "^55.0.2",
44
44
  "react": "19.2.0",
45
- "react-native": "0.83.1"
45
+ "react-native": "0.83.2"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "expo": "*"
49
49
  },
50
- "gitHead": "436ffb4355d5207f4a03fbc3568cd33424a40f3e"
50
+ "gitHead": "928cc951854450f3c72e00e8e420e567fabd1f8c"
51
51
  }
@@ -1,16 +0,0 @@
1
- <vector xmlns:android="http://schemas.android.com/apk/res/android"
2
- android:width="20dp"
3
- android:height="20dp"
4
- android:viewportWidth="20"
5
- android:viewportHeight="20">
6
- <path
7
- android:pathData="M10,4.167C8.007,4.167 6.284,5.333 5.481,7.024C5.173,7.673 5,8.398 5,9.167H15C15,8.398 14.827,7.673 14.519,7.024C13.716,5.333 11.993,4.167 10,4.167ZM16.667,10.833H17.5C17.96,10.833 18.333,10.46 18.333,10C18.333,9.54 17.96,9.167 17.5,9.167H16.667C16.667,8.415 16.542,7.691 16.312,7.016L17.094,6.549C17.489,6.313 17.618,5.801 17.382,5.406C17.146,5.011 16.634,4.882 16.239,5.118L15.577,5.513C14.387,3.7 12.334,2.5 10,2.5C7.666,2.5 5.613,3.7 4.423,5.513L3.761,5.118C3.366,4.882 2.854,5.011 2.618,5.406C2.382,5.801 2.511,6.313 2.906,6.549L3.688,7.016C3.458,7.691 3.333,8.415 3.333,9.167H2.5C2.04,9.167 1.667,9.54 1.667,10C1.667,10.46 2.04,10.833 2.5,10.833H3.333C3.333,11.585 3.458,12.309 3.688,12.984L2.906,13.451C2.511,13.687 2.382,14.199 2.618,14.594C2.854,14.989 3.366,15.118 3.761,14.882L4.423,14.486C5.613,16.3 7.666,17.5 10,17.5C12.334,17.5 14.387,16.3 15.577,14.486L16.239,14.882C16.634,15.118 17.146,14.989 17.382,14.594C17.618,14.199 17.489,13.687 17.094,13.451L16.312,12.984C16.542,12.309 16.667,11.585 16.667,10.833ZM15,10.833H10.833V15.764C12.465,15.49 13.83,14.426 14.519,12.976C14.827,12.327 15,11.602 15,10.833ZM9.167,15.764V10.833H5C5,11.602 5.173,12.327 5.481,12.976C6.17,14.426 7.535,15.49 9.167,15.764Z"
8
- android:fillColor="#8B8D98"
9
- android:fillType="evenOdd"/>
10
- <path
11
- android:pathData="M9.167,6.667C9.167,7.127 8.794,7.5 8.333,7.5C7.873,7.5 7.5,7.127 7.5,6.667C7.5,6.206 7.873,5.833 8.333,5.833C8.794,5.833 9.167,6.206 9.167,6.667Z"
12
- android:fillColor="#8B8D98"/>
13
- <path
14
- android:pathData="M12.5,6.667C12.5,7.127 12.127,7.5 11.667,7.5C11.206,7.5 10.833,7.127 10.833,6.667C10.833,6.206 11.206,5.833 11.667,5.833C12.127,5.833 12.5,6.206 12.5,6.667Z"
15
- android:fillColor="#8B8D98"/>
16
- </vector>