@tripian/react 9.1.48 → 9.1.50

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.
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import Model from '@tripian/model';
2
3
  type TourCardProps = {
3
4
  title: string;
4
5
  price?: number;
@@ -9,6 +10,7 @@ type TourCardProps = {
9
10
  tags: string[];
10
11
  provider?: string;
11
12
  onBook?: () => void;
13
+ t: (value: Model.TranslationKey) => string;
12
14
  };
13
15
  declare const TourCard: React.FC<TourCardProps>;
14
16
  export default TourCard;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ };
7
+ declare const MobileTicket: React.FC<Props>;
8
+ export default MobileTicket;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ };
7
+ declare const Offered: React.FC<Props>;
8
+ export default Offered;
@@ -57,12 +57,14 @@ import Legs from './Legs';
57
57
  import Link from './Link';
58
58
  import Link2 from './Link2';
59
59
  import MapPin from './MapPin';
60
+ import MobileTicket from './MobileTicket';
60
61
  import Music from './Music';
61
62
  import MustTry from './MustTry';
62
63
  import NightLife from './Nightlife';
63
64
  import NextArrow from './NextArrow';
64
65
  import NoImage from './NoImage';
65
66
  import Offer from './Offer';
67
+ import Offered from './Offered';
66
68
  import Offer2 from './Offer2';
67
69
  import OfferNew from './OfferNew';
68
70
  import Phone from './Phone';
@@ -101,4 +103,4 @@ import Web from './Web';
101
103
  import Wifi from './Wifi';
102
104
  import X from './X';
103
105
  import X2 from './X2';
104
- export { Add, AddLocation, ArrivalDate, ArrivalHours, ArrowLeft, ArrowRight, ArrowRight2, Attraction, Avatar, Bars, BookOpen, Bicycle, Booking, Bookmark, Bookmark2, BookmarkFill, Cafe, Calendar, Calendar2, Car, Check, Check2, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Children, Clock, Clock2, Close, Delete, Dots, DepartureDate, Destination, Distance, DragDrop, Drink, Edit, EditHour, Euro, Exclamation2, Favorite, Filter, Filter2, Food, Hearth, Home, Info, Info2, Info3, LandingCalendar, LandingCellPhone, LandingProfile, LandingThumbsUp, Left, Legs, Link, Link2, MapPin, Music, MustTry, NightLife, NextArrow, NoImage, Offer, Offer2, OfferNew, Phone, Phone2, Plus, Power, PreviousArrow, RadioButtonChecked, RadioButtonUnChecked, Replace, Restaurant, Retail, Right, Search, SearchClose, Share, Shopping, Star, Star2, StarBlack, Success, SwitchIcon, Tags, Ticket2, Timer, Thermometer, ThumbsDown, ThumbsDownEmpty, ThumbsUp, ThumbsUpEmpty, Time, Trash, Uber, User, Users, Web, Wifi, X, X2, };
106
+ export { Add, AddLocation, ArrivalDate, ArrivalHours, ArrowLeft, ArrowRight, ArrowRight2, Attraction, Avatar, Bars, BookOpen, Bicycle, Booking, Bookmark, Bookmark2, BookmarkFill, Cafe, Calendar, Calendar2, Car, Check, Check2, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Children, Clock, Clock2, Close, Delete, Dots, DepartureDate, Destination, Distance, DragDrop, Drink, Edit, EditHour, Euro, Exclamation2, Favorite, Filter, Filter2, Food, Hearth, Home, Info, Info2, Info3, LandingCalendar, LandingCellPhone, LandingProfile, LandingThumbsUp, Left, Legs, Link, Link2, MapPin, MobileTicket, Music, MustTry, NightLife, NextArrow, NoImage, Offer, Offered, Offer2, OfferNew, Phone, Phone2, Plus, Power, PreviousArrow, RadioButtonChecked, RadioButtonUnChecked, Replace, Restaurant, Retail, Right, Search, SearchClose, Share, Shopping, Star, Star2, StarBlack, Success, SwitchIcon, Tags, Ticket2, Timer, Thermometer, ThumbsDown, ThumbsDownEmpty, ThumbsUp, ThumbsUpEmpty, Time, Trash, Uber, User, Users, Web, Wifi, X, X2, };