@tripian/react 9.1.31 → 9.1.34

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.31",
3
+ "version": "9.1.34",
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.31",
9
+ "@tripian/model": "9.1.34",
10
10
  "external-svg-loader": "^1.6.1",
11
11
  "moment": "^2.24.0",
12
12
  "react": "^18.1.0",
@@ -3,7 +3,7 @@ import Model, { Providers } from '@tripian/model';
3
3
  interface IVictoryProductCard {
4
4
  product: Providers.Victory.Event;
5
5
  bodyClicked: (product: Providers.Victory.Event) => void;
6
- t: (value: Model.TranslationKey) => string;
6
+ t?: (value: Model.TranslationKey) => string;
7
7
  }
8
8
  declare const VictoryProductCard: React.FC<IVictoryProductCard>;
9
9
  export default VictoryProductCard;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Providers } from '@tripian/model';
3
+ interface IVictoryProductCard {
4
+ event: Providers.Victory.Event;
5
+ bodyClicked: (event: Providers.Victory.Event) => void;
6
+ }
7
+ declare const VictoryProductMapCard: React.FC<IVictoryProductCard>;
8
+ export default VictoryProductMapCard;