@bytebrand/fe-ui-core 4.2.17 → 4.2.19

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.17",
3
+ "version": "4.2.19",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -108,3 +108,6 @@
108
108
 
109
109
  .arrowUpIcon
110
110
  transform: rotate(180deg);
111
+
112
+ .wrapper
113
+ padding-right: 15px;
@@ -95,7 +95,7 @@ const PriceContent: React.FunctionComponent<IPriceContentProps> = ({
95
95
  </div>
96
96
  ) : null}
97
97
  </span>
98
- <div>
98
+ <div className={styles.wrapper}>
99
99
  <PriceRating {...priceRatingProps} />
100
100
  <span className={styles.priceInfo}>
101
101
  <span className={styles.priceInfoLabel} onClick={onAdjustRateClick}>
@@ -70,7 +70,7 @@ const MaterialField: React.FC<IVehicleModalProps> = ({
70
70
  value={value}
71
71
  name={name}
72
72
  sx={sx}
73
- error={error}
73
+ error={!!error}
74
74
  type={type === 'password' ? passType : type}
75
75
  disabled={disabled}
76
76
  required={required}