@geops/rvf-mobility-web-component 0.1.24-beta.0 → 0.1.25

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
@@ -2,6 +2,21 @@
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.25](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.24...v0.1.25) (2025-02-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add full trajectory style ([69e231a](https://github.com/geops/rvf-mobility-web-component/commit/69e231ac33a7adfe2fe54e599efdf815a44a2188))
11
+ * orange delay for more or equal to 3 min ([256ce7a](https://github.com/geops/rvf-mobility-web-component/commit/256ce7a1e7e14f865694839fdc7471ea6fde5c1d))
12
+
13
+ ### [0.1.24](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.23...v0.1.24) (2025-02-10)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * use rvf tenant and improve realitme display ([#22](https://github.com/geops/rvf-mobility-web-component/issues/22)) ([8ef1412](https://github.com/geops/rvf-mobility-web-component/commit/8ef1412c22fe6b4f66a07c92920b7f02ce920da0))
19
+
5
20
  ### [0.1.23](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.22...v0.1.23) (2025-01-28)
6
21
 
7
22
 
package/index.html CHANGED
@@ -68,6 +68,7 @@
68
68
  // "apikey",
69
69
  // "baselayer",
70
70
  // "center",
71
+ "details",
71
72
  // "geolocation",
72
73
  "layers",
73
74
  "layertree",
@@ -88,6 +89,7 @@
88
89
  ];
89
90
 
90
91
  const booleanAttrs = [
92
+ "details",
91
93
  "geolocation",
92
94
  "notification",
93
95
  "realtime",
@@ -105,7 +107,8 @@
105
107
  ];
106
108
 
107
109
  const descriptionByAttr = {
108
- layers: "A comma separated list of layers: echtzeit,haltestellen,verkaufsstellen,liniennetz,tarifzonen,fahrrad,auto,cargobike,e-roller,mitfahrpunkt,pois"
110
+ layers: "A comma separated list of layers: echtzeit,haltestellen,verkaufsstellen,liniennetz,tarifzonen,fahrrad,auto,cargobike,e-roller,mitfahrpunkt,pois",
111
+ details: "Show shared mobility details in the sidebar when we click on an shared mobility feature.",
109
112
  };
110
113
 
111
114
  document.querySelector('#attributes').innerHTML = generateAttributesTable(wc, attrs, booleanAttrs, descriptionByAttr);