expo-haptics 14.1.0-canary-20250404-87e2506 → 14.1.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.
- package/CHANGELOG.md +8 -2
- package/android/build.gradle +2 -2
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,17 @@
|
|
|
6
6
|
|
|
7
7
|
### 🎉 New features
|
|
8
8
|
|
|
9
|
+
### 🐛 Bug fixes
|
|
10
|
+
|
|
11
|
+
### 💡 Others
|
|
12
|
+
|
|
13
|
+
## 14.1.0 — 2025-04-04
|
|
14
|
+
|
|
15
|
+
### 🎉 New features
|
|
16
|
+
|
|
9
17
|
- [Android] Added new method `performAndroidHapticsAsync()`. The `Vibrator` api is no longer recommended. This method avoids it. ([#34077](https://github.com/expo/expo/pull/34077) by [@alanjhughes](https://github.com/alanjhughes))
|
|
10
18
|
- [Web] Add web support using Web Vibration API. ([#34131](https://github.com/expo/expo/pull/34131) by [@reichhartd](https://github.com/reichhartd))
|
|
11
19
|
|
|
12
|
-
### 🐛 Bug fixes
|
|
13
|
-
|
|
14
20
|
### 💡 Others
|
|
15
21
|
|
|
16
22
|
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
package/android/build.gradle
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-haptics",
|
|
3
|
-
"version": "14.1.0
|
|
3
|
+
"version": "14.1.0",
|
|
4
4
|
"description": "Provides access to the system's haptics engine on iOS, vibration effects on Android, and Web Vibration API on web.",
|
|
5
5
|
"main": "src/Haptics.ts",
|
|
6
6
|
"types": "build/Haptics.d.ts",
|
|
@@ -33,9 +33,10 @@
|
|
|
33
33
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/haptics/",
|
|
34
34
|
"dependencies": {},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"expo-module-scripts": "4.0
|
|
36
|
+
"expo-module-scripts": "^4.1.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"expo": "
|
|
40
|
-
}
|
|
39
|
+
"expo": "*"
|
|
40
|
+
},
|
|
41
|
+
"gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
|
|
41
42
|
}
|