@tripian/react 9.1.6 → 9.1.8
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/BookingCard/BookingCard.d.ts +12 -0
- package/components/DatePicker/DatePicker.d.ts +1 -0
- package/components/base/ErrorMessage/ErrorMessage.d.ts +6 -0
- package/components/base/Svg/Icons/Avatar.d.ts +1 -0
- package/components/base/Svg/Icons/Calendar.d.ts +1 -0
- package/components/base/Svg/Icons/index.d.ts +3 -1
- package/components/base/TextField/TextField.d.ts +1 -0
- package/index.d.ts +3 -1
- package/index.js +2068 -1988
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IBookingCard {
|
|
3
|
+
image: string;
|
|
4
|
+
title: string;
|
|
5
|
+
dateTime?: string;
|
|
6
|
+
person?: string;
|
|
7
|
+
status?: string;
|
|
8
|
+
provider: string;
|
|
9
|
+
clicked: () => void;
|
|
10
|
+
}
|
|
11
|
+
declare const BookingCard: React.FC<IBookingCard>;
|
|
12
|
+
export default BookingCard;
|
|
@@ -9,6 +9,7 @@ interface IDatePickerTemplate {
|
|
|
9
9
|
endDate?: moment.Moment;
|
|
10
10
|
openDirection?: 'down' | 'up';
|
|
11
11
|
showMonthSelection?: boolean;
|
|
12
|
+
isDayBlocked?: ((date: moment.Moment | null) => boolean) | undefined;
|
|
12
13
|
}
|
|
13
14
|
declare const DatePicker: React.FC<IDatePickerTemplate>;
|
|
14
15
|
export default DatePicker;
|
|
@@ -18,6 +18,7 @@ import DragDrop from './DragDrop';
|
|
|
18
18
|
import Drink from './Drink';
|
|
19
19
|
import Edit from './Edit';
|
|
20
20
|
import EditHour from './EditHour';
|
|
21
|
+
import Exclamation2 from './Exclamation2';
|
|
21
22
|
import Favorite from './Favorite';
|
|
22
23
|
import Filter from './Filter';
|
|
23
24
|
import Food from './Food';
|
|
@@ -37,6 +38,7 @@ import Restaurant from './Restaurant';
|
|
|
37
38
|
import Retail from './Retail';
|
|
38
39
|
import Share from './Share';
|
|
39
40
|
import Shopping from './Shopping';
|
|
41
|
+
import Success from './Success';
|
|
40
42
|
import SwitchIcon from './SwitchIcon/SwitchIcon';
|
|
41
43
|
import ThumbsDown from './ThumbsDown';
|
|
42
44
|
import ThumbsDownEmpty from './ThumbsDownEmpty';
|
|
@@ -46,4 +48,4 @@ import Time from './Time';
|
|
|
46
48
|
import Uber from './Uber';
|
|
47
49
|
import Info from './Info';
|
|
48
50
|
import Info2 from './Info2';
|
|
49
|
-
export { Add, AddLocation, Attraction, Avatar, Bars, Bicycle, Booking, Bookmark, BookmarkFill, Cafe, Calendar, Car, Clock, Close, Delete, Distance, DragDrop, Drink, Edit, EditHour, Favorite, Filter, Food, LandingCalendar, LandingCellPhone, LandingProfile, LandingThumbsUp, Legs, Link, MustTry, NightLife, NextArrow, Offer, OfferNew, PreviousArrow, Restaurant, Retail, Share, Shopping, SwitchIcon, ThumbsDown, ThumbsDownEmpty, ThumbsUp, ThumbsUpEmpty, Time, Uber, Info, Info2, };
|
|
51
|
+
export { Add, AddLocation, Attraction, Avatar, Bars, Bicycle, Booking, Bookmark, BookmarkFill, Cafe, Calendar, Car, Clock, Close, Delete, Distance, DragDrop, Drink, Edit, EditHour, Exclamation2, Favorite, Filter, Food, LandingCalendar, LandingCellPhone, LandingProfile, LandingThumbsUp, Legs, Link, MustTry, NightLife, NextArrow, Offer, OfferNew, PreviousArrow, Restaurant, Retail, Share, Shopping, Success, SwitchIcon, ThumbsDown, ThumbsDownEmpty, ThumbsUp, ThumbsUpEmpty, Time, Uber, Info, Info2, };
|
package/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import BbTourInfoImage from './providers/bb/components/BbTourInfo/BbTourInfoImag
|
|
|
13
13
|
import BbTourInfoOffer from './providers/bb/components/BbTourInfo/BbTourInfoOffer/BbTourInfoOffer';
|
|
14
14
|
import BbTourInfoText from './providers/bb/components/BbTourInfo/BbTourInfoText/BbTourInfoText';
|
|
15
15
|
import Booking from './providers/yelp/components/Booking/Booking';
|
|
16
|
+
import BookingCard from './components/BookingCard/BookingCard';
|
|
16
17
|
import Button from './components/base/Button/Button';
|
|
17
18
|
import ButtonIcons from './components/base/Button/Icons';
|
|
18
19
|
import BUTTON_TYPES from './components/base/Button/ButtonTypes';
|
|
@@ -34,6 +35,7 @@ import DeleteUser from './components/DeleteUser/DeleteUser';
|
|
|
34
35
|
import DeleteUserSuccess from './components/DeleteUserSuccess/DeleteUserSuccess';
|
|
35
36
|
import DirectionInfo from './components/DirectionInfo/DirectionInfo';
|
|
36
37
|
import Dropdown from './components/base/Dropdown/Dropdown';
|
|
38
|
+
import ErrorMessage from './components/base/ErrorMessage/ErrorMessage';
|
|
37
39
|
import FlightCard from './components/FlightCard/FlightCard';
|
|
38
40
|
import FormTemplateAgent from './components/FormTemplate/FormTemplateAgent/FormTemplateAgent';
|
|
39
41
|
import FormTemplateCompanion from './components/FormTemplate/FormTemplateCompanion/FormTemplateCompanion';
|
|
@@ -131,4 +133,4 @@ import ViatorTourInfoImage from './providers/viator/components/ViatorProductInfo
|
|
|
131
133
|
import QuestionTemplate from './components/QuestionTemplate/QuestionTemplate';
|
|
132
134
|
import BookingDetails from './providers/gyg/components/BookingDetails/BookingDetails';
|
|
133
135
|
import Accordion from './components/base/Accordion/Accordion';
|
|
134
|
-
export { Accordion, AccommondationCard, AccommondationInfo, Badge, BackButton, Backdrop, BbAccommodationInfo, BbCarRentInfo, BbTourCard, BbTourInfo, BbTourInfoForm, BbTourInfoImage, BbTourInfoOffer, BbTourInfoText, Booking, BookingDetails, Button, ButtonIcons, BUTTON_TYPES, ButterflyCard, ButterflyCardSlider, CardSlider, Checkbox, CreateIconButton, CloseIconButton, CloseIconButton2, ConfirmModalPopup, Copy, CouponCard, CustomPopover, CustomSlider, DatePicker, DateRangePicker, DeleteUser, DeleteUserSuccess, DirectionInfo, Dropdown, Feedback, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateNewPassword, FormTemplateProfile, FormTemplateRegister, FormTemplateResetPassword, FormTemplateToursAndTickets, FormTemplateTripNext, FormTemplateTripNextWidget, GoogleMaps, GoogleMapsPoiInfo, GoogleMapsSearch, GPlacesAutocomplete2, GygTourCard, GygTourInfoEx, GygTourInfoForm, GygTourInfoImage, GygTourShoppingForm, GygTourOption, IconImage, Img, ImgLazy, Input, ItineraryCardSlider, Label, Loading, MapCategory, Modal, ModalFull, MustTryCard, NumberCounter, NumberInput, Notification, OfferAvailableDaySelect, OfferCard, OpeningsForm, PageLoading, PlanChangeDay, PoiCategories, PoiInfo, PoiInfoImage, PoiInfoText, PoiListCard, PoiListSearch, PoiRefCard, PoiSearchAutoComplete, PoiOfferRefCard, PreAppLoading, PreLoading, Price, ProgressLoading, ProgressAppLoading, RadioButton, RadioButtonGroup, RatingStars, ReadMoreLess, RefCard, ReservationDetails, ResetPasswordApproved, ResetPasswordEmail, RezdyProductCard, RezdyTourInfo, RezdyTourInfoImage, RouteResult, RSelect, SearchThisArea, SideNavigation, SocialLogin, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteInfo, TextField, Toggle, ToggleSwitch, TourRefCardProduct, TripCard, TripSavedCard, UserCompanions, UserFeedbacks, ViatorProductCard, ViatorProductInfo, ViatorTourInfoImage, };
|
|
136
|
+
export { Accordion, AccommondationCard, AccommondationInfo, Badge, BackButton, Backdrop, BbAccommodationInfo, BbCarRentInfo, BbTourCard, BbTourInfo, BbTourInfoForm, BbTourInfoImage, BbTourInfoOffer, BbTourInfoText, Booking, BookingCard, BookingDetails, Button, ButtonIcons, BUTTON_TYPES, ButterflyCard, ButterflyCardSlider, CardSlider, Checkbox, CreateIconButton, CloseIconButton, CloseIconButton2, ConfirmModalPopup, Copy, CouponCard, CustomPopover, CustomSlider, DatePicker, DateRangePicker, DeleteUser, DeleteUserSuccess, DirectionInfo, Dropdown, ErrorMessage, Feedback, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateNewPassword, FormTemplateProfile, FormTemplateRegister, FormTemplateResetPassword, FormTemplateToursAndTickets, FormTemplateTripNext, FormTemplateTripNextWidget, GoogleMaps, GoogleMapsPoiInfo, GoogleMapsSearch, GPlacesAutocomplete2, GygTourCard, GygTourInfoEx, GygTourInfoForm, GygTourInfoImage, GygTourShoppingForm, GygTourOption, IconImage, Img, ImgLazy, Input, ItineraryCardSlider, Label, Loading, MapCategory, Modal, ModalFull, MustTryCard, NumberCounter, NumberInput, Notification, OfferAvailableDaySelect, OfferCard, OpeningsForm, PageLoading, PlanChangeDay, PoiCategories, PoiInfo, PoiInfoImage, PoiInfoText, PoiListCard, PoiListSearch, PoiRefCard, PoiSearchAutoComplete, PoiOfferRefCard, PreAppLoading, PreLoading, Price, ProgressLoading, ProgressAppLoading, RadioButton, RadioButtonGroup, RatingStars, ReadMoreLess, RefCard, ReservationDetails, ResetPasswordApproved, ResetPasswordEmail, RezdyProductCard, RezdyTourInfo, RezdyTourInfoImage, RouteResult, RSelect, SearchThisArea, SideNavigation, SocialLogin, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteInfo, TextField, Toggle, ToggleSwitch, TourRefCardProduct, TripCard, TripSavedCard, UserCompanions, UserFeedbacks, ViatorProductCard, ViatorProductInfo, ViatorTourInfoImage, };
|