@bytebrand/fe-ui-core 4.2.219 → 4.2.221

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.2.219",
3
+ "version": "4.2.221",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -93,4 +93,8 @@
93
93
  font-size: 14px
94
94
 
95
95
  .montlyUnit
96
- font-size: 8px
96
+ font-size: 8px
97
+
98
+ .priceValue
99
+ text-align: right
100
+ min-width 100px
@@ -55,7 +55,7 @@ const AdditionalOrderInfo = ({ t, additionalOrderData, redirectToUrl, buyingType
55
55
  return (
56
56
  <div key={label} className={styles.flexContainer}>
57
57
  <div className={styles.labelText}>{label}</div>
58
- <div className={styles.labelText}>{value}</div>
58
+ <div className={classNames(styles.labelText, styles.priceValue)}>{value}</div>
59
59
  </div>
60
60
  );
61
61
  }
@@ -189,7 +189,7 @@ const OrderStatusSection = ({
189
189
  ] : []
190
190
  ],
191
191
  overallRate: {
192
- label: buyingType === 'buy' ? t('MyOrderPage:yourOverallPrice') : t('MyOrderPage:yourOverallRate'),
192
+ label: t('MyOrderPage:yourOverallPrice'),
193
193
  value: buyingType === 'buy' ? totalPrice : monthlyInstallment
194
194
  }
195
195
  };
@@ -108,7 +108,7 @@ const PriceContent: React.FunctionComponent<IPriceContentProps> = ({
108
108
  className={styles.infoIcon}
109
109
  customDimensions
110
110
  />
111
- <span>{t('sidebar.adjustRate')}</span>
111
+ <span>{priceTabActiveIndex === 2 ? t('sidebar.serviceProducts') : t('sidebar.adjustRate')}</span>
112
112
  <IconSVG name='menuArrow' className={`${styles.arrowDownIcon} ${offerBlockOpen ? styles.arrowUpIcon : ''}`} customDimensions />
113
113
  </span>
114
114
  </span>