@bytebrand/fe-ui-core 4.2.27 → 4.2.29

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.27",
3
+ "version": "4.2.29",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -2,9 +2,9 @@
2
2
 
3
3
  .topWrapper
4
4
  position: absolute
5
- left: 20px
6
- right: 20px
7
- top: 20px
5
+ left: 16px
6
+ right: 16px
7
+ top: 16px
8
8
  user-select: none
9
9
  z-index: 1
10
10
  font-size: 20px
@@ -14,7 +14,7 @@
14
14
  +media-phone-only()
15
15
  left: 15px
16
16
  right: 15px
17
- top: 12px
17
+ top: 6px
18
18
 
19
19
  +media-tablet-landscape-down()
20
20
  font-size: 16px
@@ -10,7 +10,7 @@
10
10
  .titleOwerflow
11
11
  +media-tablet-down()
12
12
  truncate()
13
- padding: 15px
13
+ padding: 15px 15px 0
14
14
  display: flex
15
15
  flex-direction: column
16
16
 
@@ -26,6 +26,7 @@
26
26
  display: inline-block;
27
27
  text-overflow: ellipsis;
28
28
  white-space: nowrap;
29
+ margin-top: 3px;
29
30
 
30
31
  .userButton
31
32
  cursor: pointer
@@ -105,6 +105,7 @@ const MaterialAutocomplete: React.FC<IMaterialAutocompleteProps> = ({
105
105
  readOnly={readOnly}
106
106
  listwithimage={listWithImage}
107
107
  onChange={(e, newValue, reason: string, details?: { option: any }) => {
108
+ e.persist();
108
109
  if (typeof newValue === 'string') {
109
110
  onChange(newValue);
110
111
  } else if (newValue && newValue.inputValue) {