@bytebrand/fe-ui-core 4.2.26 → 4.2.28

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.26",
3
+ "version": "4.2.28",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -1,7 +1,7 @@
1
1
  @import '../../../theme/mixins.styl';
2
2
 
3
3
  .titleSection
4
- color: $blue-10
4
+ // color: $blue-10
5
5
  text-transform uppercase
6
6
  position relative
7
7
  display flex
@@ -11,6 +11,8 @@
11
11
  +media-tablet-down()
12
12
  truncate()
13
13
  padding: 15px
14
+ display: flex
15
+ flex-direction: column
14
16
 
15
17
  .makeModel
16
18
  font-weight: bold
@@ -20,6 +22,10 @@
20
22
  .otherParam
21
23
  font-size: 12px;
22
24
  text-transform none
25
+ overflow: hidden;
26
+ display: inline-block;
27
+ text-overflow: ellipsis;
28
+ white-space: nowrap;
23
29
 
24
30
  .userButton
25
31
  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) {