@geops/rvf-mobility-web-component 0.1.35 → 0.1.36
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 +10 -0
- package/index.html +2 -2
- package/index.js +262 -262
- package/package.json +1 -1
- 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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
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.36](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.35...v0.1.36) (2025-02-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add rvf search ([06085d4](https://github.com/geops/rvf-mobility-web-component/commit/06085d451b2c174b6cf73e2fb416c61d426116e5))
|
|
11
|
+
* add rvf search ([875a9ce](https://github.com/geops/rvf-mobility-web-component/commit/875a9ce93c59c036a04809bab07b361477d0269b))
|
|
12
|
+
* fix doc of embed attr ([01fa435](https://github.com/geops/rvf-mobility-web-component/commit/01fa4354066c8d49e0c9e67086c39ee34b5db61a))
|
|
13
|
+
* import ([f99dcff](https://github.com/geops/rvf-mobility-web-component/commit/f99dcff0debd729e066d92a96896af48b8905c9a))
|
|
14
|
+
|
|
5
15
|
### [0.1.35](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.34...v0.1.35) (2025-02-25)
|
|
6
16
|
|
|
7
17
|
|
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
|
|