@tripian/react 9.1.29 → 9.1.31
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/DestinationSelect/DestinationSelect.d.ts +2 -0
- package/components/FormTemplate/FormTemplateToursAndTickets/FormTemplateToursAndTickets.d.ts +12 -0
- package/components/FormTemplate/FormTemplateTripNext/StepDestination/StepDestination.d.ts +1 -0
- package/components/GoogleMapsProductInfo/GoogleMapsProductInfo.d.ts +9 -0
- package/img/13f5111370c863fe160e3ae09f748178.svg +1 -0
- package/img/2aad75e0021fce3d2b682964f5d53b60.png +0 -0
- package/img/fa81f72dd1bcfe14e46420e69c168795.png +0 -0
- package/index.d.ts +7 -5
- package/index.js +1637 -1526
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
- package/providers/toristy/ToristyProductCard/ToristyProductCardText/ToristyProductCardText.d.ts +1 -1
- package/providers/victory/VictoryProductCard/VictoryProductCard.d.ts +9 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import Model from '@tripian/model';
|
|
2
3
|
export type RSelectOption = {
|
|
3
4
|
id: number;
|
|
4
5
|
label: string;
|
|
5
6
|
payload: {
|
|
6
7
|
destinationId: number;
|
|
7
8
|
destinationName: string;
|
|
9
|
+
coordinate: Model.Coordinate;
|
|
8
10
|
parentName: string;
|
|
9
11
|
};
|
|
10
12
|
isSelected?: boolean;
|
package/components/FormTemplate/FormTemplateToursAndTickets/FormTemplateToursAndTickets.d.ts
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
import Model from '@tripian/model';
|
|
2
2
|
import React from 'react';
|
|
3
|
+
export type RSelectOption = {
|
|
4
|
+
id: number;
|
|
5
|
+
label: string;
|
|
6
|
+
payload: {
|
|
7
|
+
destinationId: number;
|
|
8
|
+
destinationName: string;
|
|
9
|
+
coordinate: Model.Coordinate;
|
|
10
|
+
parentName: string;
|
|
11
|
+
};
|
|
12
|
+
isSelected?: boolean;
|
|
13
|
+
};
|
|
3
14
|
interface IFormTemplateToursAndTickets {
|
|
4
15
|
destinations: {
|
|
5
16
|
destinationId: number;
|
|
6
17
|
destinationName: string;
|
|
18
|
+
coordinate: Model.Coordinate;
|
|
7
19
|
parentName: string;
|
|
8
20
|
}[];
|
|
9
21
|
toursAndTicketsProfile: Model.TourAndTickets;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Model from '@tripian/model';
|
|
3
|
+
import './GoogleMapsProductInfo.scss';
|
|
4
|
+
interface IGoogleMapsProductInfo {
|
|
5
|
+
zoom: number;
|
|
6
|
+
center: Model.Coordinate;
|
|
7
|
+
}
|
|
8
|
+
declare const GoogleMapsProductInfo: React.FC<IGoogleMapsProductInfo>;
|
|
9
|
+
export default GoogleMapsProductInfo;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 36 36" fill="none"><path d="M34.6337 0.0883789H24.1907H24.0916L22.4062 7.9867L18.7048 24.0808L15.0366 7.9867L13.3512 0.0883789H13.252H2.80906H2.54468L18.7048 32.3096L34.8981 0.0883789H34.6337Z" fill="#4F2972"></path><path d="M35.8234 7.22607L18.6718 35.2503L1.48713 7.22607L0 15.4879L18.6718 35.9112L37.3105 15.4879L35.8234 7.22607Z" fill="#B72284"></path></svg>
|
|
Binary file
|
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import './styles/global.scss';
|
|
2
|
+
import Accordion from './components/base/Accordion/Accordion';
|
|
2
3
|
import AccommondationCard from './components/AccommondationCard/AccommondationCard';
|
|
3
4
|
import AccommondationInfo from './components/AccommondationInfo/AccommondationInfo';
|
|
4
5
|
import Badge from './components/base/Badge/Badge';
|
|
@@ -14,6 +15,7 @@ import BbTourInfoOffer from './providers/bb/components/BbTourInfo/BbTourInfoOffe
|
|
|
14
15
|
import BbTourInfoText from './providers/bb/components/BbTourInfo/BbTourInfoText/BbTourInfoText';
|
|
15
16
|
import Booking from './providers/yelp/components/Booking/Booking';
|
|
16
17
|
import BookingCard from './components/BookingCard/BookingCard';
|
|
18
|
+
import BookingDetails from './providers/gyg/components/BookingDetails/BookingDetails';
|
|
17
19
|
import Button from './components/base/Button/Button';
|
|
18
20
|
import ButtonIcons from './components/base/Button/Icons';
|
|
19
21
|
import BUTTON_TYPES from './components/base/Button/ButtonTypes';
|
|
@@ -39,6 +41,7 @@ import Dropdown from './components/base/Dropdown/Dropdown';
|
|
|
39
41
|
import ErrorMessage from './components/base/ErrorMessage/ErrorMessage';
|
|
40
42
|
import EventCard from './components/EventCard/EventCard';
|
|
41
43
|
import EventList from './components/EventList/EventList';
|
|
44
|
+
import Feedback from './components/FeedBack/FeedBack';
|
|
42
45
|
import FlightCard from './components/FlightCard/FlightCard';
|
|
43
46
|
import FormTemplateAgent from './components/FormTemplate/FormTemplateAgent/FormTemplateAgent';
|
|
44
47
|
import FormTemplateCompanion from './components/FormTemplate/FormTemplateCompanion/FormTemplateCompanion';
|
|
@@ -52,6 +55,7 @@ import FormTemplateTripNext from './components/FormTemplate/FormTemplateTripNext
|
|
|
52
55
|
import FormTemplateTripNextWidget from './components/FormTemplate/FormTemplateTripNextWidget/FormTemplateTripNextWidget';
|
|
53
56
|
import GoogleMaps from './components/GoogleMaps/GoogleMaps';
|
|
54
57
|
import GoogleMapsPoiInfo from './components/GoogleMapsPoiInfo/GoogleMapsPoiInfo';
|
|
58
|
+
import GoogleMapsProductInfo from './components/GoogleMapsProductInfo/GoogleMapsProductInfo';
|
|
55
59
|
import GoogleMapsSearch from './components/GoogleMapsSearch/GoogleMapsSearch';
|
|
56
60
|
import GPlacesAutocomplete2 from './components/GoogleMaps/GPlacesAutocomplete2/GPlacesAutocomplete2';
|
|
57
61
|
import GygTourCard from './providers/gyg/components/GygTourCard/GygTourCard';
|
|
@@ -120,6 +124,7 @@ import StepTimeframe from './components/StepTimeframe/StepTimeframe';
|
|
|
120
124
|
import Svg from './components/base/Svg/Svg';
|
|
121
125
|
import Switch from './components/base/Switch/Switch';
|
|
122
126
|
import * as SvgIcons from './components/base/Svg/Icons';
|
|
127
|
+
import QuestionTemplate from './components/QuestionTemplate/QuestionTemplate';
|
|
123
128
|
import TabMenu from './components/base/TabMenu/TabMenu';
|
|
124
129
|
import TasteCard from './components/TasteCard/TasteCard';
|
|
125
130
|
import TasteCard2 from './components/TasteCard2/TasteCard2';
|
|
@@ -135,11 +140,8 @@ import TripCard from './components/TripCard/TripCard';
|
|
|
135
140
|
import TripSavedCard from './components/TripSavedCard/TripSavedCard';
|
|
136
141
|
import UserCompanions from './components/UserCompanions/UserCompanions';
|
|
137
142
|
import UserFeedbacks from './components/FeedBack/UserFeedbacks/UserFeedbacks';
|
|
138
|
-
import Feedback from './components/FeedBack/FeedBack';
|
|
139
143
|
import ViatorProductCard from './providers/viator/components/ViatorProductCard/ViatorProductCard';
|
|
140
144
|
import ViatorProductInfo from './providers/viator/components/ViatorProductInfo/ViatorProductInfo';
|
|
141
145
|
import ViatorTourInfoImage from './providers/viator/components/ViatorProductInfo/ViatorTourInfoImage/ViatorTourInfoImage';
|
|
142
|
-
import
|
|
143
|
-
|
|
144
|
-
import Accordion from './components/base/Accordion/Accordion';
|
|
145
|
-
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, DestinationSelect, DirectionInfo, Dropdown, ErrorMessage, EventCard, EventList, 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, OpenedHours, OpeningsForm, PageLoading, PlaceDetailsModal, 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, ShowMoreLess, SideNavigation, SocialLogin, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteInfo, TextField, Toggle, ToggleSwitch, ToristyProductCard, ToristyTourInfoImage, ToristyTourInfoText, TourRefCardProduct, TripCard, TripSavedCard, UserCompanions, UserFeedbacks, ViatorProductCard, ViatorProductInfo, ViatorTourInfoImage, };
|
|
146
|
+
import VictoryProductCard from './providers/victory/VictoryProductCard/VictoryProductCard';
|
|
147
|
+
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, DestinationSelect, DirectionInfo, Dropdown, ErrorMessage, EventCard, EventList, Feedback, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateNewPassword, FormTemplateProfile, FormTemplateRegister, FormTemplateResetPassword, FormTemplateToursAndTickets, FormTemplateTripNext, FormTemplateTripNextWidget, GoogleMaps, GoogleMapsPoiInfo, GoogleMapsProductInfo, GoogleMapsSearch, GPlacesAutocomplete2, GygTourCard, GygTourInfoEx, GygTourInfoForm, GygTourInfoImage, GygTourShoppingForm, GygTourOption, IconImage, Img, ImgLazy, Input, ItineraryCardSlider, Label, Loading, MapCategory, Modal, ModalFull, MustTryCard, NumberCounter, NumberInput, Notification, OfferAvailableDaySelect, OfferCard, OpenedHours, OpeningsForm, PageLoading, PlaceDetailsModal, 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, ShowMoreLess, SideNavigation, SocialLogin, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteInfo, TextField, Toggle, ToggleSwitch, ToristyProductCard, ToristyTourInfoImage, ToristyTourInfoText, TourRefCardProduct, TripCard, TripSavedCard, UserCompanions, UserFeedbacks, ViatorProductCard, ViatorProductInfo, ViatorTourInfoImage, VictoryProductCard, };
|