@react-native-ohos/react-native-map-clustering 3.4.1-rc.1 → 3.5.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/COMMITTERS.md +6 -0
  3. package/LICENSE +21 -21
  4. package/OAT.xml +57 -57
  5. package/README.OpenSource +10 -10
  6. package/README.md +13 -13
  7. package/example/.eslintrc +19 -0
  8. package/example/.node-version +6 -0
  9. package/example/.prettierrc.js +7 -0
  10. package/example/.watchmanconfig +6 -0
  11. package/example/app.json +4 -0
  12. package/example/babel.config.js +6 -0
  13. package/example/contexts.ts +9 -0
  14. package/example/harmony/AppScope/app.json5 +10 -0
  15. package/example/harmony/AppScope/resources/base/element/string.json +8 -0
  16. package/example/harmony/AppScope/resources/base/media/app_icon.png +0 -0
  17. package/example/harmony/build-profile.template.json5 +36 -0
  18. package/example/harmony/codelinter.json +32 -0
  19. package/example/harmony/entry/build-profile.json5 +22 -0
  20. package/example/harmony/entry/hvigorfile.ts +8 -0
  21. package/example/harmony/entry/oh-package.json5 +11 -0
  22. package/example/harmony/entry/src/main/cpp/CMakeLists.txt +42 -0
  23. package/example/harmony/entry/src/main/cpp/PackageProvider.cpp +17 -0
  24. package/example/harmony/entry/src/main/ets/RNPackagesFactory.ets +15 -0
  25. package/example/harmony/entry/src/main/ets/assets/fonts/Pacifico-Regular.ttf +0 -0
  26. package/example/harmony/entry/src/main/ets/assets/fonts/StintUltraCondensed-Regular.ttf +0 -0
  27. package/example/harmony/entry/src/main/ets/entryability/EntryAbility.ets +27 -0
  28. package/example/harmony/entry/src/main/ets/pages/Index.ets +209 -0
  29. package/example/harmony/entry/src/main/ets/pages/SurfaceDeadlockTest.ets +135 -0
  30. package/example/harmony/entry/src/main/ets/pages/TouchDisplayer.ets +44 -0
  31. package/example/harmony/entry/src/main/module.json5 +72 -0
  32. package/example/harmony/entry/src/main/resources/base/element/color.json +8 -0
  33. package/example/harmony/entry/src/main/resources/base/element/string.json +20 -0
  34. package/example/harmony/entry/src/main/resources/base/media/icon.png +0 -0
  35. package/example/harmony/entry/src/main/resources/base/profile/main_pages.json +5 -0
  36. package/example/harmony/entry/src/main/resources/rawfile/1.txt +1 -0
  37. package/example/harmony/format.ps1 +18 -0
  38. package/example/harmony/hvigor/hvigor-config.json5 +21 -0
  39. package/example/harmony/hvigorfile.ts +9 -0
  40. package/example/harmony/oh-package.json5 +12 -0
  41. package/example/index.js +11 -0
  42. package/example/jest.config.js +11 -0
  43. package/example/metro.config.js +30 -0
  44. package/example/package.json +61 -0
  45. package/example/react-native.config.js +11 -0
  46. package/example/scripts/create-build-profile.js +46 -0
  47. package/example/src/App.tsx +186 -0
  48. package/example/src/Navigation.tsx +163 -0
  49. package/example/src/index.tsx +59 -0
  50. package/example/tsconfig.json +14 -0
  51. package/index.d.ts +40 -40
  52. package/index.js +2 -2
  53. package/lib/ClusterHarmony.js +21 -21
  54. package/lib/ClusteredMapView.js +310 -310
  55. package/package.json +42 -42
package/package.json CHANGED
@@ -1,42 +1,42 @@
1
- {
2
- "name": "@react-native-ohos/react-native-map-clustering",
3
- "harmony": {
4
- "alias": "react-native-map-clustering",
5
- "redirectInternalImports": true
6
- },
7
- "version": "3.4.1-rc.1",
8
- "description": "React Native Map Clustering both for Android and iOS",
9
- "types": "index.d.ts",
10
- "main": "index.js",
11
- "scripts": {
12
- "test": "jest"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/venits/react-native-map-clustering.git"
17
- },
18
- "keywords": [
19
- "react-native",
20
- "react",
21
- "cluster",
22
- "android",
23
- "iOS",
24
- "map",
25
- "clustering"
26
- ],
27
- "author": "Venits",
28
- "license": "MIT",
29
- "bugs": {
30
- "url": "https://github.com/venits/react-native-map-clustering/issues"
31
- },
32
- "homepage": "https://github.com/venits/react-native-map-clustering#readme",
33
- "dependencies": {
34
- "supercluster": "^7.1.0",
35
- "@mapbox/geo-viewport": "^0.4.1"
36
- },
37
- "peerDependencies": {
38
- "react-native-maps": "*",
39
- "react-native-map-clustering": "3.4.0",
40
- "react-native": "*"
41
- }
42
- }
1
+ {
2
+ "name": "@react-native-ohos/react-native-map-clustering",
3
+ "harmony": {
4
+ "alias": "react-native-map-clustering",
5
+ "redirectInternalImports": true
6
+ },
7
+ "version": "3.5.0",
8
+ "description": "React Native Map Clustering both for Android and iOS",
9
+ "types": "index.d.ts",
10
+ "main": "index.js",
11
+ "scripts": {
12
+ "test": "jest"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/react-native-oh-library/react-native-map-clustering.git"
17
+ },
18
+ "keywords": [
19
+ "react-native",
20
+ "react",
21
+ "cluster",
22
+ "android",
23
+ "iOS",
24
+ "map",
25
+ "clustering"
26
+ ],
27
+ "author": "Venits",
28
+ "license": "MIT",
29
+ "bugs": {
30
+ "url": "https://github.com/react-native-oh-library/react-native-map-clustering/issues"
31
+ },
32
+ "homepage": "https://github.com/react-native-oh-library/react-native-map-clustering/tree/br_rnoh0.77#readme",
33
+ "dependencies": {
34
+ "supercluster": "^7.1.0",
35
+ "@mapbox/geo-viewport": "^0.4.1"
36
+ },
37
+ "peerDependencies": {
38
+ "react-native-maps": "*",
39
+ "react-native-map-clustering": "3.4.0",
40
+ "react-native": "*"
41
+ }
42
+ }