@bytebrand/fe-ui-core 4.1.187 → 4.1.189

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.1.187",
3
+ "version": "4.1.189",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -53,8 +53,9 @@
53
53
  .priceItemBuy
54
54
  border-top: 1px solid rgba(76, 78, 100, 0.12);
55
55
 
56
- +media-tablet-landscape-up()
57
- transform: translateX(-6px);
56
+ .priceItemPrice
57
+ +media-tablet-landscape-up()
58
+ transform: translateX(-6px);
58
59
 
59
60
  .priceItemCategory
60
61
  font-size: 12px
@@ -58,7 +58,7 @@
58
58
  &.vehiclePriceTitleRecently
59
59
  font-size: 12px;
60
60
  height: 42px;
61
-
61
+
62
62
  &.vehiclePriceTitleLanding
63
63
  font-size: 11px;
64
64
  height: 38px;
@@ -70,7 +70,7 @@
70
70
 
71
71
  .buttonDetails
72
72
  width: 100%
73
- height: 40px
73
+ height: 30px
74
74
  font-size: 16px
75
75
  margin-top: 8px !important;
76
76
  font-weight bold !important;
@@ -14,6 +14,7 @@
14
14
  font-size: 8px
15
15
  vertical-align: middle
16
16
  flex-shrink: 0
17
+ margin-left:5px
17
18
 
18
19
  .labelVertical
19
20
  flex-direction: column;
@@ -11,8 +11,7 @@ interface IFilterLabelProps {
11
11
 
12
12
  const FilterLabel: React.FunctionComponent<IFilterLabelProps> = ({ text, agg, isVertical }) => (
13
13
  <span className={classnames(styles.label, { [styles.labelVertical]: isVertical }) }>
14
- <span className={styles.labelText}>{text}</span>
15
- <span className={styles.labelAgg}>(<FormattedNumber numbersAfterDot={0} value={agg} />)</span>
14
+ <span className={styles.labelText}>{text}<span className={styles.labelAgg}>(<FormattedNumber numbersAfterDot={0} value={agg} />)</span></span>
16
15
  </span>
17
16
  );
18
17
 
@@ -101,7 +101,7 @@ const MaterialAutocomplete: React.FC<IMaterialAutocompleteProps> = ({
101
101
  handleHomeEndKeys
102
102
  value={value}
103
103
  name={name}
104
- error={error ? error.toString() : error}
104
+ error={error ? error.toString() : ''}
105
105
  readOnly={readOnly}
106
106
  listwithimage={listWithImage}
107
107
  onChange={(e, newValue, reason: string, details?: { option: any }) => {