@geops/rvf-mobility-web-component 0.1.35 → 0.1.37
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/.yarnrc.yml +1 -0
- package/CHANGELOG.md +18 -0
- package/index.html +3 -3
- package/index.js +262 -263
- package/input.css +0 -1
- package/package.json +1 -1
- package/src/GeolocationButton/GeolocationButton.tsx +1 -1
- package/src/RvfMobilityMap/RvfMobilityMap.tsx +2 -2
- package/src/RvfSearch/RvfSearch.tsx +28 -0
- package/src/RvfSearch/index.tsx +1 -0
- package/src/Search/index.tsx +1 -1
- package/src/StopsSearch/StopsSearch.tsx +6 -6
- package/src/icons/Search/Search.tsx +39 -0
- package/src/icons/Search/index.tsx +1 -0
- package/src/icons/Search/search.svg +16 -0
- package/src/utils/constants.ts +4 -8
package/.yarnrc.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodeLinker: node-modules
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
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.37](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.36...v0.1.37) (2025-02-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* fix documentation ([d56f62b](https://github.com/geops/rvf-mobility-web-component/commit/d56f62bbd296441a26609f0946f1267c8159b4a7))
|
|
11
|
+
* fix documentation ([3463ca2](https://github.com/geops/rvf-mobility-web-component/commit/3463ca279339cf3b26914ed00c91324a1e8abbc5))
|
|
12
|
+
|
|
13
|
+
### [0.1.36](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.35...v0.1.36) (2025-02-25)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* add rvf search ([06085d4](https://github.com/geops/rvf-mobility-web-component/commit/06085d451b2c174b6cf73e2fb416c61d426116e5))
|
|
19
|
+
* add rvf search ([875a9ce](https://github.com/geops/rvf-mobility-web-component/commit/875a9ce93c59c036a04809bab07b361477d0269b))
|
|
20
|
+
* fix doc of embed attr ([01fa435](https://github.com/geops/rvf-mobility-web-component/commit/01fa4354066c8d49e0c9e67086c39ee34b5db61a))
|
|
21
|
+
* import ([f99dcff](https://github.com/geops/rvf-mobility-web-component/commit/f99dcff0debd729e066d92a96896af48b8905c9a))
|
|
22
|
+
|
|
5
23
|
### [0.1.35](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.34...v0.1.35) (2025-02-25)
|
|
6
24
|
|
|
7
25
|
|
package/index.html
CHANGED
|
@@ -97,13 +97,13 @@
|
|
|
97
97
|
"geolocation",
|
|
98
98
|
"notification",
|
|
99
99
|
"realtime",
|
|
100
|
-
// "search",
|
|
101
100
|
"permalink",
|
|
102
101
|
"layertree",
|
|
103
102
|
"share",
|
|
104
103
|
"print",
|
|
105
104
|
"toolbar",
|
|
106
|
-
"search"
|
|
105
|
+
"search",
|
|
106
|
+
"embed",
|
|
107
107
|
];
|
|
108
108
|
const booleanTrueByDefault = [ "details", "print", "share", "layertree", "geolocation", "toolbar", "realtime"];
|
|
109
109
|
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
layertree: "Show/hide the layer tree button in the toolbar. Default to true.",
|
|
126
126
|
geolocation: "Show/hide geolocation button on the map. Default to true.",
|
|
127
127
|
toolbar: "Show/hide the toolbar on the left. Default to true.",
|
|
128
|
-
layers: "A comma separated list of layers: echtzeit,haltestellen,verkaufsstellen,liniennetz,tarifzonen,
|
|
128
|
+
layers: "A comma separated list of layers: echtzeit,haltestellen,verkaufsstellen,liniennetz,tarifzonen,fahrradfrelo,fahrradandere,cargobikefrelo,cargobikeandere,grueneflotte,naturenergie,autoandere,e-roller,mitfahrpunkt,pois",
|
|
129
129
|
details: "Show shared mobility details in the sidebar when we click on an shared mobility feature.",
|
|
130
130
|
realtime: "Show/hide the realtime data in the map. Default to true.",
|
|
131
131
|
embed: "Activate/deactivate the embedded navigation mode. In this mode zooming with mouse wheel is deactivated and, on touch device, you can only navigate with two finger, a warning message is displayed to warn the user. Default to false."
|