@tripian/react 2.0.3 → 4.0.0
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/DatePicker/DatePicker.d.ts +3 -1
- package/components/DateRangePicker/DateRangePicker.d.ts +1 -0
- package/components/GoogleMaps/GRoute/GRouteCalculate.d.ts +0 -1
- package/components/base/ImgLazy/ImgLazy.d.ts +1 -0
- package/index.d.ts +3 -3
- package/index.js +18271 -17357
- package/index.js.map +1 -1
- package/min.css +1 -7273
- package/package.json +3 -7
- package/providers/bb/components/BbTourCard/BbTourCard.d.ts +8 -0
- package/providers/bb/components/BbTourCard/BbTourCardImage/BbTourCardImage.d.ts +6 -0
- package/providers/bb/components/BbTourCard/BbTourCardText/BbTourCardText.d.ts +7 -0
- package/providers/bb/components/BbTourInfo/BbTourInfo.d.ts +12 -0
- package/providers/bb/components/BbTourInfo/BbTourInfoForm/BbTourInfoForm.d.ts +11 -0
- package/providers/bb/components/BbTourInfo/BbTourInfoImage/BbTourInfoImage.d.ts +9 -0
- package/providers/bb/components/BbTourInfo/BbTourInfoText/BbTourInfoText.d.ts +7 -0
- package/providers/bb/components/helper/index.d.ts +1 -0
- package/providers/gyg/components/GygTourInfo/GygTourInfo.d.ts +9 -0
- package/providers/gyg/components/GygTourInfo/GygTourInfoForm/GygTourInfoForm.d.ts +8 -0
- package/providers/gyg/components/GygTourInfo/GygTourInfoForm/GygTourOption/GygTourOption.d.ts +12 -0
- package/providers/gyg/components/GygTourInfo/GygTourInfoForm/GygTourShoppingForm/GygTourShoppingForm.d.ts +8 -0
- package/providers/gyg/components/GygTourInfo/GygTourInfoForm/GygTourShoppingForm/timezones.d.ts +8 -0
- package/components/ImgDiv/ImgDiv.d.ts +0 -6
- package/components/ImgDiv/ImgDivCover.d.ts +0 -10
- package/img/c333890c3b6ce527a1a114eb30958094.svg +0 -43
|
@@ -5,6 +5,8 @@ import './DatePicker.scss';
|
|
|
5
5
|
interface IDatePickerTemplate {
|
|
6
6
|
currentDate: moment.Moment;
|
|
7
7
|
onchanged: (date: moment.Moment | null) => void;
|
|
8
|
+
startDate?: moment.Moment;
|
|
9
|
+
endDate?: moment.Moment;
|
|
8
10
|
}
|
|
9
|
-
declare const DatePicker: React.
|
|
11
|
+
declare const DatePicker: React.FC<IDatePickerTemplate>;
|
|
10
12
|
export default DatePicker;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="googlemaps" />
|
|
2
1
|
import { IMergedDirections } from './IRouteResult';
|
|
3
2
|
declare const mergeDirections: (directionsWalking: google.maps.DirectionsResult, directionsDriving: google.maps.DirectionsResult) => IMergedDirections | undefined;
|
|
4
3
|
export default mergeDirections;
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import './styles/global.scss';
|
|
|
2
2
|
import AccommendationCard from './components/AccommendationCard/AccommendationCard';
|
|
3
3
|
import AccommendationInfo from './components/AccommendationInfo/AccommendationInfo';
|
|
4
4
|
import Backdrop from './components/base/Backdrop/Backdrop';
|
|
5
|
+
import BbTourCard from './providers/bb/components/BbTourCard/BbTourCard';
|
|
6
|
+
import BbTourInfo from './providers/bb/components/BbTourInfo/BbTourInfo';
|
|
5
7
|
import Booking from './providers/yelp/components/Booking/Booking';
|
|
6
8
|
import Button from './components/base/Button/Button';
|
|
7
9
|
import ButtonIcons from './components/base/Button/Icons';
|
|
@@ -30,8 +32,6 @@ import GygTourCard from './providers/gyg/components/GygTourCard/GygTourCard';
|
|
|
30
32
|
import GygTourInfo from './providers/gyg/components/GygTourInfo/GygTourInfo';
|
|
31
33
|
import IconImage from './components/base/IconImage/IconImage';
|
|
32
34
|
import Img from './components/base/Img/Img';
|
|
33
|
-
import ImgDiv from './components/ImgDiv/ImgDiv';
|
|
34
|
-
import ImgDivCover from './components/ImgDiv/ImgDivCover';
|
|
35
35
|
import ImgLazy from './components/base/ImgLazy/ImgLazy';
|
|
36
36
|
import Label from './components/Label/Label';
|
|
37
37
|
import Loading from './components/Loading/Loading';
|
|
@@ -86,4 +86,4 @@ import TripCard from './components/TripCard/TripCard';
|
|
|
86
86
|
import TopThingsSlider from './components/TopThingsSlider/TopThingsSlider';
|
|
87
87
|
import UserCompanions from './components/UserCompanions/UserCompanions';
|
|
88
88
|
import QuestionTemplate from './components/QuestionTemplate/QuestionTemplate';
|
|
89
|
-
export { AccommendationCard, AccommendationInfo, Backdrop, Booking, Button, ButtonIcons, BUTTON_TYPES, ButterflyCard, ButterflyCardSlider, CardSlider, Checkbox, CloseIconButton, ConfirmModalPopup, DatePicker, DateRangePicker, DirectionInfo, Dropdown, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateProfile, FormTemplateRegister, FormTemplateTrip, FormTemplateTrip2, GlxTourCard, GlxTourCardSlider, GlxTourInfo, GoogleMaps, GoogleMapsPoiInfo, GygTourCard, GygTourInfo, IconImage, Img,
|
|
89
|
+
export { AccommendationCard, AccommendationInfo, Backdrop, BbTourCard, BbTourInfo, Booking, Button, ButtonIcons, BUTTON_TYPES, ButterflyCard, ButterflyCardSlider, CardSlider, Checkbox, CloseIconButton, ConfirmModalPopup, DatePicker, DateRangePicker, DirectionInfo, Dropdown, FlightCard, FormTemplateAgent, FormTemplateCompanion, FormTemplateLogin, FormTemplateProfile, FormTemplateRegister, FormTemplateTrip, FormTemplateTrip2, GlxTourCard, GlxTourCardSlider, GlxTourInfo, GoogleMaps, GoogleMapsPoiInfo, GygTourCard, GygTourInfo, IconImage, Img, ImgLazy, Label, Loading, Modal, ModalFull, MustTryCard, NumberCounter, NumberInput, Notification, OpeningsForm, PageLoading, PlanChangeDay, PoiCategories, PoiInfo, PoiInfoImage, PoiInfoText, PoiListCard, PoiListSearch, PoiRefCard, PreLoading, Price, ProgressLoading, ProgressAppLoading, RadioButtonGroup, RatingStars, RefCard, ReservationDetails, RouteResult, RSelect, SearchThisArea, SideNavigation, StepAlternativeCard, StepCard, StepCardUserReaction, StepInfo, StepTimeframe, Svg, Switch, SvgIcons, QuestionTemplate, TabMenu, TasteCard, TasteCard2, TasteCard2Slider, TasteInfo, TextField, TourRefCard, TourRefCardProduct, TopThingsSlider, TripCard, UserCompanions, };
|