@bytebrand/fe-ui-core 4.1.225 → 4.1.227
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
|
@@ -129,6 +129,33 @@
|
|
|
129
129
|
padding-bottom: 15px;
|
|
130
130
|
margin-bottom: 0;
|
|
131
131
|
|
|
132
|
+
&.vehicleWrapMain
|
|
133
|
+
box-sizing: border-box;
|
|
134
|
+
grid-template-areas:
|
|
135
|
+
'title title'\
|
|
136
|
+
'image image'\
|
|
137
|
+
'info price'\
|
|
138
|
+
'seoText seoText'
|
|
139
|
+
grid-template-columns: 55% 45%;
|
|
140
|
+
border: 1px solid #DFDFDF;
|
|
141
|
+
margin-bottom: 5px;
|
|
142
|
+
border-radius: 10px;
|
|
143
|
+
padding-bottom: 8px;
|
|
144
|
+
|
|
145
|
+
& [class*='withStats__topWrapper']
|
|
146
|
+
left: 16px;
|
|
147
|
+
right: 16px;
|
|
148
|
+
|
|
149
|
+
& [class*='withStats__controls']
|
|
150
|
+
padding: 0 16px;
|
|
151
|
+
|
|
152
|
+
+media-tablet-landscape-up()
|
|
153
|
+
grid-template-columns: 120px 1fr;
|
|
154
|
+
border: 1px solid rgba(76, 78, 100, 0.12);
|
|
155
|
+
border-radius: 10px;
|
|
156
|
+
padding-bottom: 15px;
|
|
157
|
+
margin-bottom: 0;
|
|
158
|
+
|
|
132
159
|
&.vehicleWrapMyVeicles
|
|
133
160
|
grid-template-areas:
|
|
134
161
|
'title title'\
|
|
@@ -158,7 +158,8 @@ const VehicleSmallCard: FunctionComponent<IVehicleSmallCardProps> = (props) => {
|
|
|
158
158
|
|
|
159
159
|
const wrapperClassName = classnames(
|
|
160
160
|
styles.vehicle,
|
|
161
|
-
{ [styles.vehicleWrapLanding]: vehicleComponentName === 'landing'
|
|
161
|
+
{ [styles.vehicleWrapLanding]: vehicleComponentName === 'landing' },
|
|
162
|
+
{ [styles.vehicleWrapMain]: vehicleComponentName === 'main' },
|
|
162
163
|
{ [styles.vehicleWrapSearch]: vehicleComponentName === 'search' },
|
|
163
164
|
{ [styles.vehicleWrapComparable]: vehicleComponentName === 'comparable' },
|
|
164
165
|
{ [styles.vehicleWrapMyVeicles]: vehicleComponentName === 'myVehicles' },
|
package/source/locales/data.ts
CHANGED
|
@@ -84,7 +84,7 @@ export const vehicleProps = (car?: any, isOfferAvailable: boolean = true) => {
|
|
|
84
84
|
},
|
|
85
85
|
title: {
|
|
86
86
|
'addOfferToMainSlide': 'Zum Schieberegler hinzufügen',
|
|
87
|
-
'toOffer': '
|
|
87
|
+
'toOffer': 'Zum Angebot',
|
|
88
88
|
'financing': 'Finanzierung',
|
|
89
89
|
'leasing': 'Leasing',
|
|
90
90
|
'abo': 'Abo',
|
|
@@ -553,7 +553,7 @@ export const SearchPage = (chip?: any) => {
|
|
|
553
553
|
'highlights': 'Highlights:',
|
|
554
554
|
'total': 'Gesamt',
|
|
555
555
|
'vatIncluded': 'inkl. MwSt.',
|
|
556
|
-
'toOffer': '
|
|
556
|
+
'toOffer': 'Zum Angebot',
|
|
557
557
|
'addOfferToMainSlide': 'Zum Schieberegler hinzufügen'
|
|
558
558
|
},
|
|
559
559
|
'filterBy': 'Filtern nach',
|