@tripian/react 9.0.50 → 9.1.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/GoogleMaps/GMarker/Base/GMarkerProviderTourBase/GMarkerProviderTourBase.d.ts +12 -0
- package/components/GoogleMaps/GMarker/GMarkerProviderTour.d.ts +11 -0
- package/components/GoogleMaps/GoogleMaps.d.ts +6 -0
- package/img/47bec2facdb4add77bc4cba0379a2a83.png +0 -0
- package/index.d.ts +4 -1
- package/index.js +2376 -2075
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
- package/providers/rezdy/RezdyProductCard/RezdyProductCard.d.ts +8 -0
- package/providers/rezdy/RezdyProductCard/RezdyProductCardImage/RezdyProductCardImage.d.ts +7 -0
- package/providers/rezdy/RezdyProductCard/RezdyProductCardText/RezdyProductCardText.d.ts +7 -0
- package/providers/rezdy/RezdyProductInfo/RezdyTourInfoImage/RezdyTourInfoImage.d.ts +9 -0
- package/providers/rezdy/RezdyTourInfo/RezdyTourInfo.d.ts +12 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/react",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"description": "Tripian Inc React Components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@react-google-maps/api": "^2.12.0",
|
|
9
|
-
"@tripian/model": "9.0
|
|
9
|
+
"@tripian/model": "9.1.0",
|
|
10
10
|
"external-svg-loader": "^1.6.1",
|
|
11
11
|
"moment": "^2.24.0",
|
|
12
12
|
"react": "^18.1.0",
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Providers } from '@tripian/model';
|
|
3
|
+
interface IRezdyProductCard {
|
|
4
|
+
product: Providers.Rezdy.Product;
|
|
5
|
+
bodyClicked: (product: Providers.Rezdy.Product) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const RezdyProductCard: React.FC<IRezdyProductCard>;
|
|
8
|
+
export default RezdyProductCard;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Providers } from '@tripian/model';
|
|
3
|
+
import 'slick-carousel/slick/slick.css';
|
|
4
|
+
import 'slick-carousel/slick/slick-theme.css';
|
|
5
|
+
interface IRezdyTourInfoImage {
|
|
6
|
+
tourImages: Providers.Rezdy.ProductImage[];
|
|
7
|
+
}
|
|
8
|
+
declare const RezdyTourInfoImage: React.FC<IRezdyTourInfoImage>;
|
|
9
|
+
export default RezdyTourInfoImage;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import 'slick-carousel/slick/slick.css';
|
|
3
|
+
import 'slick-carousel/slick/slick-theme.css';
|
|
4
|
+
import Model, { Providers } from '@tripian/model';
|
|
5
|
+
interface IRezdyTourInfo {
|
|
6
|
+
product: Providers.Rezdy.Product;
|
|
7
|
+
onBookingNow: () => void;
|
|
8
|
+
close: () => void;
|
|
9
|
+
t: (value: Model.TranslationKey) => string;
|
|
10
|
+
}
|
|
11
|
+
declare const RezdyTourInfo: React.FC<IRezdyTourInfo>;
|
|
12
|
+
export default RezdyTourInfo;
|