@bytebrand/fe-ui-core 4.1.34 → 4.1.35

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.1.34",
3
+ "version": "4.1.35",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -346,6 +346,7 @@ export default memo(VehicleSmallCard, (props, nextProps) => { // shouldComponent
346
346
  financing: { monthlyInstallment, annualMileage, withFinalInstallment },
347
347
  leasing: { monthlyInstallment: lMonthlyInstallment }
348
348
  },
349
+ isCarInFavorite,
349
350
  children
350
351
  } = props;
351
352
 
@@ -354,5 +355,6 @@ export default memo(VehicleSmallCard, (props, nextProps) => { // shouldComponent
354
355
  && annualMileage === nextProps.price.financing.annualMileage
355
356
  && withFinalInstallment === nextProps.price.financing.withFinalInstallment
356
357
  && lMonthlyInstallment === nextProps.price.leasing.monthlyInstallment
358
+ && isCarInFavorite === nextProps.isCarInFavorite
357
359
  && children === nextProps.children;
358
360
  });