mautourco-components 0.2.141 → 0.2.142

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.
@@ -19,7 +19,7 @@ export var comparisonColumns = function () {
19
19
  return (_jsx(RowAccommodation.FirstCol, { serviceName: raw.hotelName, offers: raw.offers, status: raw.roomName }));
20
20
  }
21
21
  if (isComparisonExcursion(raw)) {
22
- return _jsx(RowExcursion.FirstCol, { serviceName: raw.name });
22
+ return (_jsx(RowExcursion.FirstCol, { serviceName: raw.name, extraContent: raw.pickUpPoint }));
23
23
  }
24
24
  if (isComparisonTransfer(raw)) {
25
25
  var transfer = raw;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mautourco-components",
3
- "version": "0.2.141",
3
+ "version": "0.2.142",
4
4
  "private": false,
5
5
  "description": "Bibliothèque de composants Mautourco pour le redesign",
6
6
  "main": "dist/index.js",
@@ -32,7 +32,12 @@ export const comparisonColumns: () => ColumnType<ComparisonData>[] = () => {
32
32
  );
33
33
  }
34
34
  if (isComparisonExcursion(raw)) {
35
- return <RowExcursion.FirstCol serviceName={raw.name as string} />;
35
+ return (
36
+ <RowExcursion.FirstCol
37
+ serviceName={raw.name as string}
38
+ extraContent={raw.pickUpPoint}
39
+ />
40
+ );
36
41
  }
37
42
  if (isComparisonTransfer(raw)) {
38
43
  const transfer = raw;