@tripian/react 9.3.9 → 9.3.11

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.
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import Model from '@tripian/model';
3
3
  interface ICardImage {
4
4
  poi: Model.Poi;
5
+ stepType?: string;
5
6
  }
6
7
  declare const CardImage: React.FC<ICardImage>;
7
8
  export default CardImage;
@@ -39,6 +39,7 @@ interface IPoiInfo {
39
39
  placeInfoCallBack: () => void;
40
40
  redeemClicked?: () => void;
41
41
  onImageModalChange?: (isOpen: boolean) => void;
42
+ stepType?: string;
42
43
  t: (value: Model.TranslationKey) => string;
43
44
  }
44
45
  declare const PoiInfo: React.FC<IPoiInfo>;
@@ -6,6 +6,7 @@ interface IPoiInfoImageDesktop {
6
6
  poi: Model.Poi;
7
7
  t: (key: Model.TranslationKey) => string;
8
8
  onImageModalChange?: (isOpen: boolean) => void;
9
+ stepType?: string;
9
10
  }
10
11
  declare const PoiInfoImageDesktop: React.FC<IPoiInfoImageDesktop>;
11
12
  export default PoiInfoImageDesktop;
@@ -11,6 +11,7 @@ interface IPoiInfoImageMobile {
11
11
  toggleFavorite: (poi: Model.Poi, willFavorite: boolean) => void;
12
12
  close: (poi: Model.Poi) => void;
13
13
  t: (value: Model.TranslationKey) => string;
14
+ stepType?: string;
14
15
  }
15
16
  declare const PoiInfoImageMobile: React.FC<IPoiInfoImageMobile>;
16
17
  export default PoiInfoImageMobile;
@@ -8,6 +8,7 @@ interface IPoiInfoImage {
8
8
  close: () => void;
9
9
  square: boolean;
10
10
  t: (value: Model.TranslationKey) => string;
11
+ stepType?: string;
11
12
  }
12
13
  declare const PoiInfoImage: React.FC<IPoiInfoImage>;
13
14
  export default PoiInfoImage;