@bytebrand/fe-ui-core 4.8.20 → 4.8.22

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.8.20",
3
+ "version": "4.8.22",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -277,7 +277,7 @@ const VehiclePrice: React.FC<IVehiclePriceSectionProps> = (props: IVehiclePriceS
277
277
  ) : null}
278
278
  {showOfferBtn ? (
279
279
  vehicleComponentName === 'landing' ? (
280
- <button className={buttonClassNames} onClick={onDetailsClick}>{t('vehicleProps:title.toOffer')}</button>
280
+ <Button variant={offerBtnVariantCondition} className={buttonClassNames} onClick={onDetailsClick}>{t('vehicleProps:title.toOffer')}</Button>
281
281
  ) :
282
282
  <Button variant={offerBtnVariantCondition} className={buttonClassNames} onClick={onDetailsClick}>{t('vehicleProps:title.toOffer')}</Button>
283
283
  ) : ''}
@@ -43,6 +43,7 @@ export const vehicleProps = (car?: any, isOfferAvailable: boolean = true) => {
43
43
  wltpConsumptionCombined: `${vehicleOption.consumptionCombined}l/100km`
44
44
  },
45
45
  value: {
46
+ onRequest: "Auf Anfrage",
46
47
  mileage: `${vehicleOption.mileage} km`,
47
48
  consumption: `${vehicleOption.consumptionCombined}l/100km`,
48
49
  consumptionPower: `${vehicleOption.consumptionPowerCombined}kWh/100km`,