@tripian/react 6.0.59 → 6.0.61
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/PoiCategories/PoiCategories.d.ts +1 -0
- package/components/TripSavedCard/TripSavedCard.d.ts +8 -0
- package/components/base/Svg/Icons/Exclamation.d.ts +4 -0
- package/index.d.ts +2 -1
- package/index.js +1791 -1535
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Model from '@tripian/model';
|
|
3
|
+
interface ITripSavedCard {
|
|
4
|
+
tripReference: Model.TripReference;
|
|
5
|
+
clicked: (tripReference: Model.TripReference) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const TripSavedCard: React.FC<ITripSavedCard>;
|
|
8
|
+
export default TripSavedCard;
|
package/index.d.ts
CHANGED
|
@@ -98,6 +98,7 @@ import TextField from './components/base/TextField/TextField';
|
|
|
98
98
|
import ToggleSwitch from './components/base/ToggleSwitch/ToggleSwitch';
|
|
99
99
|
import TourRefCardProduct from './components/TourRefCardProduct/TourRefCardProduct';
|
|
100
100
|
import TripCard from './components/TripCard/TripCard';
|
|
101
|
+
import TripSavedCard from './components/TripSavedCard/TripSavedCard';
|
|
101
102
|
import UserCompanions from './components/UserCompanions/UserCompanions';
|
|
102
103
|
import UserFeedbacks from './components/FeedBack/UserFeedbacks/UserFeedbacks';
|
|
103
104
|
import ViatorProductCard from './providers/viator/components/ViatorProductCard/ViatorProductCard';
|
|
@@ -106,4 +107,4 @@ import ViatorTourInfoImage from './providers/viator/components/ViatorProductInfo
|
|
|
106
107
|
import QuestionTemplate from './components/QuestionTemplate/QuestionTemplate';
|
|
107
108
|
import BookingDetails from './providers/gyg/components/BookingDetails/BookingDetails';
|
|
108
109
|
import Accordion from './components/base/Accordion/Accordion';
|
|
109
|
-
export { Accordion, AccommondationCard, AccommondationInfo, BackButton, Backdrop, BbAccommodationInfo, BbCarRentInfo, BbTourCard, BbTourInfo, Booking, BookingDetails, Button, ButtonIcons, BUTTON_TYPES, ButterflyCard, ButterflyCardSlider, CardSlider, Checkbox, CreateIconButton, CloseIconButton, CloseIconButton2, Copy, ConfirmModalPopup, DatePicker, DateRangePicker, DirectionInfo, Dropdown, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateNewPassword, FormTemplateProfile, FormTemplateRegister, FormTemplateResetPassword, FormTemplateTripNext, FormTemplateTripNextWidget, GoogleMaps, GoogleMapsPoiInfo, GygTourCard, GygTourInfoEx, GygTourInfoForm, GygTourInfoImage, GygTourShoppingForm, GygTourOption, IconImage, Img, ImgLazy, Input, ItineraryCardSlider, Label, Loading, Modal, ModalFull, MustTryCard, NumberCounter, NumberInput, Notification, OpeningsForm, PageLoading, PlanChangeDay, PoiCategories, PoiInfo, PoiInfoImage, PoiInfoText, PoiListCard, PoiListSearch, PoiRefCard, PoiOfferRefCard, PreAppLoading, PreLoading, Price, ProgressLoading, ProgressAppLoading, RadioButtonGroup, RatingStars, ReadMoreLess, RefCard, ReservationDetails, ResetPasswordApproved, ResetPasswordEmail, RouteResult, RSelect, SearchThisArea, SideNavigation, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteInfo, TextField, ToggleSwitch, TourRefCardProduct, TripCard, UserCompanions, UserFeedbacks, ViatorProductCard, ViatorProductInfo, ViatorTourInfoImage, };
|
|
110
|
+
export { Accordion, AccommondationCard, AccommondationInfo, BackButton, Backdrop, BbAccommodationInfo, BbCarRentInfo, BbTourCard, BbTourInfo, Booking, BookingDetails, Button, ButtonIcons, BUTTON_TYPES, ButterflyCard, ButterflyCardSlider, CardSlider, Checkbox, CreateIconButton, CloseIconButton, CloseIconButton2, Copy, ConfirmModalPopup, DatePicker, DateRangePicker, DirectionInfo, Dropdown, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateNewPassword, FormTemplateProfile, FormTemplateRegister, FormTemplateResetPassword, FormTemplateTripNext, FormTemplateTripNextWidget, GoogleMaps, GoogleMapsPoiInfo, GygTourCard, GygTourInfoEx, GygTourInfoForm, GygTourInfoImage, GygTourShoppingForm, GygTourOption, IconImage, Img, ImgLazy, Input, ItineraryCardSlider, Label, Loading, Modal, ModalFull, MustTryCard, NumberCounter, NumberInput, Notification, OpeningsForm, PageLoading, PlanChangeDay, PoiCategories, PoiInfo, PoiInfoImage, PoiInfoText, PoiListCard, PoiListSearch, PoiRefCard, PoiOfferRefCard, PreAppLoading, PreLoading, Price, ProgressLoading, ProgressAppLoading, RadioButtonGroup, RatingStars, ReadMoreLess, RefCard, ReservationDetails, ResetPasswordApproved, ResetPasswordEmail, RouteResult, RSelect, SearchThisArea, SideNavigation, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteInfo, TextField, ToggleSwitch, TourRefCardProduct, TripCard, TripSavedCard, UserCompanions, UserFeedbacks, ViatorProductCard, ViatorProductInfo, ViatorTourInfoImage, };
|