@geops/rvf-mobility-web-component 0.1.13 → 0.1.15

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 (111) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/index.js +217 -112
  3. package/package.json +5 -3
  4. package/src/RvfButton/RvfButton.tsx +5 -2
  5. package/src/RvfCheckbox/RvfCheckbox.tsx +10 -4
  6. package/src/RvfExportMenu/RvfExportMenu.tsx +59 -77
  7. package/src/RvfFloatingMenu/RvfFloatingMenu.tsx +1 -1
  8. package/src/RvfIconButton/RvfIconButton.tsx +4 -1
  9. package/src/RvfInputCopy/RvfInputCopy.tsx +57 -0
  10. package/src/RvfInputCopy/index.tsx +1 -0
  11. package/src/RvfLayerTree/TreeItem/TreeItem.tsx +20 -0
  12. package/src/RvfLayerTreeButton/RvfLayerTreeButton.tsx +27 -0
  13. package/src/RvfLayerTreeButton/index.tsx +1 -0
  14. package/src/RvfLineNetworkPlanLayer/RvfLineNetworkPlanLayer.tsx +2 -5
  15. package/src/RvfMobilityMap/RvfMobilityMap.tsx +176 -18
  16. package/src/RvfOverlayHeader/RvfOverlayHeader.tsx +40 -0
  17. package/src/RvfOverlayHeader/index.tsx +1 -0
  18. package/src/RvfPermalink/RvfPermalink.tsx +18 -0
  19. package/src/RvfPermalink/index.tsx +1 -0
  20. package/src/RvfSelect/RvfSelect.tsx +2 -2
  21. package/src/RvfSellingPointsLayer/RvfSellingPointsLayer.tsx +16 -1
  22. package/src/RvfShare/RvfPermalinkButton/RvfPermalinkButton.tsx +61 -0
  23. package/src/RvfShare/RvfPermalinkButton/index.tsx +1 -0
  24. package/src/RvfShare/RvfShare.tsx +40 -0
  25. package/src/RvfShare/index.tsx +1 -0
  26. package/src/RvfShareMenuButton/RvfShareMenuButton.tsx +27 -0
  27. package/src/RvfShareMenuButton/index.tsx +1 -0
  28. package/src/RvfSharedMobilityLayerGroup/RvfSharedMobilityLayerGroup.tsx +63 -15
  29. package/src/RvfTarifZonenLayer/RvfTarifZonenLayer.tsx +2 -5
  30. package/src/icons/Automat/Automat.tsx +8 -0
  31. package/src/icons/Automat/index.tsx +1 -0
  32. package/src/icons/Automat/rvf_automat.svg +15 -0
  33. package/src/icons/Bike/Bike.tsx +8 -0
  34. package/src/icons/Bike/index.tsx +1 -0
  35. package/src/icons/Bike/rvf_shared_bike.svg +15 -0
  36. package/src/icons/Car/Car.tsx +8 -0
  37. package/src/icons/Car/index.tsx +1 -0
  38. package/src/icons/Car/rvf_shared_car.svg +16 -0
  39. package/src/icons/CargoBike/CargoBike.tsx +8 -0
  40. package/src/icons/CargoBike/index.tsx +1 -0
  41. package/src/icons/CargoBike/rvf_shared_cargo_bike.svg +16 -0
  42. package/src/icons/Copy/Copy.tsx +25 -0
  43. package/src/icons/Copy/index.tsx +1 -0
  44. package/src/icons/Doc/Doc.tsx +19 -0
  45. package/src/icons/Doc/doc.svg +7 -0
  46. package/src/icons/Doc/index.tsx +1 -0
  47. package/src/icons/Ebike/Ebike.tsx +8 -0
  48. package/src/icons/Ebike/index.tsx +1 -0
  49. package/src/icons/Ebike/rvf_shared_e-bike.svg +15 -0
  50. package/src/icons/Email/Email.tsx +19 -0
  51. package/src/icons/Email/email.svg +7 -0
  52. package/src/icons/Email/index.tsx +1 -0
  53. package/src/icons/FilePdf/FilePdf.tsx +19 -0
  54. package/src/icons/FilePdf/file-pdf.svg +7 -0
  55. package/src/icons/FilePdf/index.tsx +1 -0
  56. package/src/icons/Image/Image.tsx +24 -0
  57. package/src/icons/Image/index.tsx +1 -0
  58. package/src/icons/InPerson/InPerson.tsx +8 -0
  59. package/src/icons/InPerson/index.tsx +1 -0
  60. package/src/icons/InPerson/rvf_persoenlich.svg +17 -0
  61. package/src/icons/Minus/minus-grey.svg +7 -0
  62. package/src/icons/Ride/Ride.tsx +8 -0
  63. package/src/icons/Ride/index.tsx +1 -0
  64. package/src/icons/Ride/rvf_shared_ride.svg +15 -0
  65. package/src/icons/Scooter/Scooter.tsx +8 -0
  66. package/src/icons/Scooter/index.tsx +1 -0
  67. package/src/icons/Scooter/rvf_shared_scooter.svg +15 -0
  68. package/src/icons/Share/Share.tsx +24 -0
  69. package/src/icons/Share/index.tsx +1 -0
  70. package/src/icons/Stack/Stack.tsx +24 -0
  71. package/src/icons/Stack/index.tsx +1 -0
  72. package/src/icons/Video/Video.tsx +8 -0
  73. package/src/icons/Video/index.tsx +1 -0
  74. package/src/icons/Video/rvf_video.svg +19 -0
  75. package/src/icons/rvf_shared_ride_2.svg +12 -0
  76. package/src/logos/00_RegioRad_Stuttgart.svg +1 -0
  77. package/src/logos/01_Call_a_bike.svg +1 -0
  78. package/src/logos/03_KVV_nextbike.svg +127 -0
  79. package/src/logos/05_VrnNextbike.svg +26 -0
  80. package/src/logos/2em_carsharing.svg +52 -0
  81. package/src/logos/CarSharing-Renningen.png +0 -0
  82. package/src/logos/aubonne-basel-pickebike.svg +68 -0
  83. package/src/logos/br_logo.svg +515 -0
  84. package/src/logos/carsharing_stadtmobil_karlsruhe_rhein_neckar.svg +11 -0
  85. package/src/logos/compte-mobilite.png +0 -0
  86. package/src/logos/deer.svg +7 -0
  87. package/src/logos/donkey_republic.png +0 -0
  88. package/src/logos/edrive_carsharing.svg +1 -0
  89. package/src/logos/gruene-flotte-logo-1.svg +18 -0
  90. package/src/logos/lasten_velo_freiburg.png +0 -0
  91. package/src/logos/lie_mobil.svg +1 -0
  92. package/src/logos/logo-einfach-mobil-ortenau.png +0 -0
  93. package/src/logos/logo-red.svg +4 -0
  94. package/src/logos/logo_teilauto.png +0 -0
  95. package/src/logos/mein_konrad.svg +8 -0
  96. package/src/logos/mit_fahr_punkt.png +0 -0
  97. package/src/logos/publibike_logo.svg +1 -0
  98. package/src/logos/share-birrer.svg +99 -0
  99. package/src/logos/stadtmobil_suedbaden.svg +5 -0
  100. package/src/logos/stadtwerke_tauberfranken.png +0 -0
  101. package/src/logos/teilauto_biberach.png +0 -0
  102. package/src/logos/velospot_fribourg.png +0 -0
  103. package/src/logos/zeag_carsharing.png +0 -0
  104. package/src/logos/zeo_carsharing.png +0 -0
  105. package/src/utils/createSharedMobilityLayer.ts +20 -20
  106. package/src/utils/hooks/useRvfContext.tsx +13 -1
  107. package/tailwind.config.mjs +3 -0
  108. package/src/icons/Bicycle/verkehrstraeger-rad-2px-white.svg +0 -19
  109. package/src/icons/Car/verkehrstraeger-auto-2px-white.svg +0 -14
  110. package/src/icons/CargoBicycle/verkehrstraeger-lastenrad-2px-white.svg +0 -27
  111. package/src/icons/Scooter/scooter.svg +0 -10
package/CHANGELOG.md CHANGED
@@ -2,6 +2,43 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.15](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.14...v0.1.15) (2025-01-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * remove maxZoom ([2a34727](https://github.com/geops/rvf-mobility-web-component/commit/2a3472712e910ca7675fe201d5e10b904026645b))
11
+
12
+ ### [0.1.14](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.13...v0.1.14) (2025-01-10)
13
+
14
+
15
+ ### Features
16
+
17
+ * add hitchhiking point layer ([1959eef](https://github.com/geops/rvf-mobility-web-component/commit/1959eef30c6732408018cdc998b18071452f7111))
18
+ * add legend ([8378f77](https://github.com/geops/rvf-mobility-web-component/commit/8378f7734c3032cceac8b38c609f1bb96abd4cab))
19
+ * add stations layer ([4c9319a](https://github.com/geops/rvf-mobility-web-component/commit/4c9319a5e98c0a861cf65c8751a34b4af1baa619))
20
+ * add toolbar ([#16](https://github.com/geops/rvf-mobility-web-component/issues/16)) ([5b80270](https://github.com/geops/rvf-mobility-web-component/commit/5b80270ca7d427a4f20318fb3aee697021a7fc3c))
21
+ * added middle state for layers group ([#17](https://github.com/geops/rvf-mobility-web-component/issues/17)) ([b50f1b0](https://github.com/geops/rvf-mobility-web-component/commit/b50f1b0a5ccdc62655a779bc727b065c20542702))
22
+ * move share in toolbar ([f5e735a](https://github.com/geops/rvf-mobility-web-component/commit/f5e735a461d5cf05b6a65ca736da12ba706d015a))
23
+ * share component ([#15](https://github.com/geops/rvf-mobility-web-component/issues/15)) ([d26a0a2](https://github.com/geops/rvf-mobility-web-component/commit/d26a0a2f2a278c957ed3d3d08077c9a98653ce3a))
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * add stack image ([2365852](https://github.com/geops/rvf-mobility-web-component/commit/2365852241c9f2fa980b45e43fde4852843c4e2c))
29
+ * add video legend ([2e6a33d](https://github.com/geops/rvf-mobility-web-component/commit/2e6a33d79ebba547a187488035eda14eb4601dc7))
30
+ * add video legend ([c7ca2ea](https://github.com/geops/rvf-mobility-web-component/commit/c7ca2ea04ab7209062273c4f144615b0a1998bd7))
31
+ * change layer tree icon ([26bc264](https://github.com/geops/rvf-mobility-web-component/commit/26bc2642cd71b32a8358d44089a43aef58ec3a19))
32
+ * fix filter for lnp layer ([dd1d9d8](https://github.com/geops/rvf-mobility-web-component/commit/dd1d9d89be08b0d54bda880c77d728e9c3a8f2a4))
33
+ * fix free float icons ([97195b2](https://github.com/geops/rvf-mobility-web-component/commit/97195b2d5df35c5eb86b96757929f7d9107a0489))
34
+ * fix infinite render ([1f9f7d5](https://github.com/geops/rvf-mobility-web-component/commit/1f9f7d53cb91a8a454bacd15eb28175bf40c2986))
35
+ * fix infinite render ([36a2929](https://github.com/geops/rvf-mobility-web-component/commit/36a2929f4803ff3bfa139d7a989b9f78b9677af9))
36
+ * fix inifinite rerender ([5fbc464](https://github.com/geops/rvf-mobility-web-component/commit/5fbc4640cb1ee60a448d50d2f468ae907e1573a9))
37
+ * fix zoom range display of pois ([cc44566](https://github.com/geops/rvf-mobility-web-component/commit/cc44566f04b6287df5213a73f3dd274223ef0d73))
38
+ * hardcode some css ([f819e86](https://github.com/geops/rvf-mobility-web-component/commit/f819e86863a81a6f6e392e309cc91536fe62c244))
39
+ * hardcode some css ([0408e29](https://github.com/geops/rvf-mobility-web-component/commit/0408e2903985ea0e6286dfcaf1c1ae7788ead331))
40
+ * make tarifzone queryable ([bb0d23a](https://github.com/geops/rvf-mobility-web-component/commit/bb0d23a583b7e8d6855411497650bacafef852f7))
41
+
5
42
  ### [0.1.13](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.12...v0.1.13) (2025-01-03)
6
43
 
7
44