expo-navigation-bar 2.7.0 → 2.8.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,14 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 2.8.1 — 2023-12-19
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 2.8.0 — 2023-12-12
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 2.7.0 — 2023-11-14
14
22
 
15
23
  ### 🛠 Breaking changes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '2.7.0'
6
+ version = '2.8.1'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  if (expoModulesCorePlugin.exists()) {
@@ -94,7 +94,7 @@ android {
94
94
  namespace "expo.modules.navigationbar"
95
95
  defaultConfig {
96
96
  versionCode 1
97
- versionName '2.7.0'
97
+ versionName '2.8.1'
98
98
  }
99
99
  }
100
100
 
@@ -46,7 +46,8 @@ class NavigationBarModule : Module() {
46
46
 
47
47
  AsyncFunction("setButtonStyleAsync") { buttonStyle: String, promise: Promise ->
48
48
  NavigationBar.setButtonStyle(
49
- activity, buttonStyle,
49
+ activity,
50
+ buttonStyle,
50
51
  {
51
52
  promise.resolve(null)
52
53
  },
@@ -8,7 +8,7 @@ import expo.modules.core.interfaces.ReactActivityLifecycleListener
8
8
  import expo.modules.navigationbar.singletons.NavigationBar
9
9
 
10
10
  // this needs to stay for versioning to work
11
- // EXPO_VERSIONING_NEEDS_EXPOVIEW_R
11
+ // EXPO_VERSIONING_NEEDS_PACKAGE_R
12
12
 
13
13
  class NavigationBarReactActivityLifecycleListener : ReactActivityLifecycleListener {
14
14
  override fun onCreate(activity: Activity, savedInstanceState: Bundle?) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-navigation-bar",
3
- "version": "2.7.0",
3
+ "version": "2.8.1",
4
4
  "description": "Interact with the system navigation bar",
5
5
  "main": "build/NavigationBar.js",
6
6
  "types": "build/NavigationBar.d.ts",
@@ -43,5 +43,5 @@
43
43
  "peerDependencies": {
44
44
  "expo": "*"
45
45
  },
46
- "gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
46
+ "gitHead": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
47
47
  }