@tripian/react 6.0.53 → 6.0.56
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/base/Button/Icons/CreateIconButton/CreateIconButton.d.ts +7 -0
- package/components/base/PreAppLoading/PreAppLoading.d.ts +7 -0
- package/img/92cdf7249487e14bfa9292f89588d33d.png +0 -0
- package/index.d.ts +5 -1
- package/index.js +1004 -777
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +2 -2
- package/providers/viator/components/ViatorProductCard/ViatorProductCard.d.ts +8 -0
- package/providers/viator/components/ViatorProductCard/ViatorProductCardImage/ViatorProductCardImage.d.ts +7 -0
- package/providers/viator/components/ViatorProductCard/ViatorProductCardText/ViatorProductCardText.d.ts +7 -0
- package/providers/viator/components/ViatorProductInfo/ViatorProductInfo.d.ts +12 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/react",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.56",
|
|
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": "6.0.
|
|
9
|
+
"@tripian/model": "6.0.55",
|
|
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 IViatorProductCard {
|
|
4
|
+
product: Providers.Viator.Product;
|
|
5
|
+
bodyClicked: (product: Providers.Viator.Product) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const ViatorProductCard: React.FC<IViatorProductCard>;
|
|
8
|
+
export default ViatorProductCard;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Providers } from '@tripian/model';
|
|
3
|
+
interface IViatorProductCardImage {
|
|
4
|
+
image: Providers.Viator.ProductImage;
|
|
5
|
+
}
|
|
6
|
+
declare const ViatorProductCardImage: React.FC<IViatorProductCardImage>;
|
|
7
|
+
export default ViatorProductCardImage;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Model, { Providers } from '@tripian/model';
|
|
3
|
+
interface IViatorProductInfo {
|
|
4
|
+
product: Providers.Viator.Product;
|
|
5
|
+
productInfo: Providers.Viator.ProductInfo;
|
|
6
|
+
tripProfile: Model.TripProfile;
|
|
7
|
+
tripCurrentDate: string;
|
|
8
|
+
onBookNow: (viatorUrl: string) => void;
|
|
9
|
+
close: () => void;
|
|
10
|
+
}
|
|
11
|
+
declare const ViatorProductInfo: React.FC<IViatorProductInfo>;
|
|
12
|
+
export default ViatorProductInfo;
|