@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
|
@@ -277,7 +277,7 @@ const VehiclePrice: React.FC<IVehiclePriceSectionProps> = (props: IVehiclePriceS
|
|
|
277
277
|
) : null}
|
|
278
278
|
{showOfferBtn ? (
|
|
279
279
|
vehicleComponentName === 'landing' ? (
|
|
280
|
-
<
|
|
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
|
) : ''}
|
package/source/locales/data.ts
CHANGED
|
@@ -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`,
|