@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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@tripian/react",
3
- "version": "9.1.29",
3
+ "version": "9.1.31",
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.1.29",
9
+ "@tripian/model": "9.1.31",
10
10
  "external-svg-loader": "^1.6.1",
11
11
  "moment": "^2.24.0",
12
12
  "react": "^18.1.0",
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import Model, { Providers } from '@tripian/model';
2
+ import Model, { /* helper, */ Providers } from '@tripian/model';
3
3
  interface IToristyProductCardText {
4
4
  product: Providers.Toristy.Product & {
5
5
  categories: {
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import Model, { Providers } from '@tripian/model';
3
+ interface IVictoryProductCard {
4
+ product: Providers.Victory.Event;
5
+ bodyClicked: (product: Providers.Victory.Event) => void;
6
+ t: (value: Model.TranslationKey) => string;
7
+ }
8
+ declare const VictoryProductCard: React.FC<IVictoryProductCard>;
9
+ export default VictoryProductCard;