@tripian/react 5.0.29 → 5.0.32
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/components/GoogleMaps/GRoute/GRoute.d.ts +1 -0
- package/components/GoogleMaps/GRoute/GRouteCalculate.d.ts +1 -1
- package/components/GoogleMaps/GRoute/GRouteRender.d.ts +1 -0
- package/components/GoogleMaps/GRoute/IRouteResult.d.ts +1 -0
- package/components/GoogleMaps/GoogleMaps.d.ts +1 -0
- package/components/base/Svg/Icons/Bicycle.d.ts +8 -0
- package/components/base/Svg/Icons/index.d.ts +2 -1
- package/index.js +944 -772
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { IMergedDirections } from './IRouteResult';
|
|
2
|
-
declare const mergeDirections: (directionsWalking: google.maps.DirectionsResult, directionsDriving: google.maps.DirectionsResult) => IMergedDirections | undefined;
|
|
2
|
+
declare const mergeDirections: (directionsWalking: google.maps.DirectionsResult, directionsDriving: google.maps.DirectionsResult, directionsCycling?: google.maps.DirectionsResult) => IMergedDirections | undefined;
|
|
3
3
|
export default mergeDirections;
|
|
@@ -36,6 +36,7 @@ interface IGoogleMaps {
|
|
|
36
36
|
markerSearchThisAreaClicked: (poi: Model.Poi) => void;
|
|
37
37
|
markerProvidersPoiClicked: (poi: Providers.Bb.SearchAccommodationHotelOffer) => void;
|
|
38
38
|
markerCarRentOfferClicked: (offer: Providers.Bb.SearchCarRentOffer) => void;
|
|
39
|
+
cycling?: boolean;
|
|
39
40
|
}
|
|
40
41
|
declare const GoogleMaps: React.FC<IGoogleMaps>;
|
|
41
42
|
export default GoogleMaps;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import Add from './Add';
|
|
2
2
|
import Bars from './Bars';
|
|
3
|
+
import Bicycle from './Bicycle';
|
|
3
4
|
import Calendar from './Calendar';
|
|
4
5
|
import Car from './Car';
|
|
5
6
|
import Clock from './Clock';
|
|
@@ -14,4 +15,4 @@ import ThumbsUp from './ThumbsUp';
|
|
|
14
15
|
import ThumbsUpEmpty from './ThumbsUpEmpty';
|
|
15
16
|
import Legs from './Legs';
|
|
16
17
|
import Uber from './Uber';
|
|
17
|
-
export { Add, Bars, Calendar, Car, Clock, Close, Delete, NextArrow, PreviousArrow, SwitchIcon, ThumbsUp, ThumbsDown, ThumbsUpEmpty, ThumbsDownEmpty, Legs, Uber };
|
|
18
|
+
export { Add, Bars, Bicycle, Calendar, Car, Clock, Close, Delete, NextArrow, PreviousArrow, SwitchIcon, ThumbsUp, ThumbsDown, ThumbsUpEmpty, ThumbsDownEmpty, Legs, Uber };
|