@react-native-ohos/react-native-haptic-feedback 2.2.2-rc.1 → 2.2.2
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/.idea/modules.xml +8 -0
- package/.idea/rntpc_react-native-haptic-feedback.iml +8 -0
- package/.idea/vcs.xml +6 -0
- package/harmony/haptic_feedback/oh-package.json5 +1 -1
- package/harmony/haptic_feedback/src/main/cpp/{HapticFeedbackPackage.h → RNHapticFeedbackPackage.h} +1 -1
- package/harmony/haptic_feedback.har +0 -0
- package/package.json +4 -4
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/rntpc_react-native-haptic-feedback.iml" filepath="$PROJECT_DIR$/.idea/rntpc_react-native-haptic-feedback.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="EMPTY_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="inheritedJdk" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
</module>
|
package/.idea/vcs.xml
ADDED
package/harmony/haptic_feedback/src/main/cpp/{HapticFeedbackPackage.h → RNHapticFeedbackPackage.h}
RENAMED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
#pragma once
|
|
29
29
|
|
|
30
30
|
namespace rnoh {
|
|
31
|
-
class
|
|
31
|
+
class RNHapticFeedbackPackage : public BaseReactNativeHapticFeedbackPackage {
|
|
32
32
|
using Super = BaseReactNativeHapticFeedbackPackage;
|
|
33
33
|
using Super::Super;
|
|
34
34
|
};
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-ohos/react-native-haptic-feedback",
|
|
3
|
-
"version": "2.2.2
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Basic haptic feedback for iOS and android",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/commonjs/index",
|
|
@@ -81,9 +81,9 @@
|
|
|
81
81
|
"harmony": {
|
|
82
82
|
"alias": "react-native-haptic-feedback",
|
|
83
83
|
"autolinking": {
|
|
84
|
-
"etsPackageClassName":"HapticFeedbackPackage",
|
|
85
|
-
"cppPackageClassName":"
|
|
86
|
-
"cmakeLibraryTargetName": "rnoh_haptic_feedback",
|
|
84
|
+
"etsPackageClassName": "HapticFeedbackPackage",
|
|
85
|
+
"cppPackageClassName": "RNHapticFeedbackPackage",
|
|
86
|
+
"cmakeLibraryTargetName": "rnoh_haptic_feedback",
|
|
87
87
|
"ohPackageName": "@react-native-ohos/react-native-haptic-feedback"
|
|
88
88
|
}
|
|
89
89
|
}
|