@tripian/react 9.1.66 → 9.1.67

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.
@@ -9,7 +9,6 @@ interface IPoiInfoImageMobile {
9
9
  favoriteLoading: boolean;
10
10
  favorite: boolean;
11
11
  toggleFavorite: (poi: Model.Poi, willFavorite: boolean) => void;
12
- placeInfoCallBack: () => void;
13
12
  close: (poi: Model.Poi) => void;
14
13
  t: (value: Model.TranslationKey) => string;
15
14
  }
@@ -1,10 +1,5 @@
1
1
  import React from 'react';
2
2
  import Model from '@tripian/model';
3
- export declare const hourRange: string[];
4
- export declare const minuteRange: string[];
5
- export declare const timeRange: Array<string>;
6
- export declare const startTimeRange: (all?: boolean) => string[];
7
- export declare const endTimeRange: (startHour?: string) => string[];
8
3
  export declare const oneHourForward: (hour: string) => string;
9
4
  interface IStepTimes {
10
5
  times: {
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import Model from '@tripian/model';
3
+ interface ILanguageSelection {
4
+ languageOptions?: Model.LangCode[];
5
+ selectedLanguage: string;
6
+ onSelectedLanguage: (value: string) => void;
7
+ }
8
+ declare const LanguageSelection: React.FC<ILanguageSelection>;
9
+ export default LanguageSelection;