@bytebrand/fe-ui-core 4.1.49 → 4.1.50

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.49",
3
+ "version": "4.1.50",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -17,6 +17,7 @@
17
17
  +media-tablet-down()
18
18
  height: 35px
19
19
  margin-bottom 5px
20
+ margin-top: 0;
20
21
  +media-phone-only()
21
22
  background-color: $grey-f2;
22
23
  padding: 5px 0 5px 10px
@@ -45,8 +46,8 @@
45
46
  font-weight: 700
46
47
 
47
48
  .sorting
48
- // flex-basis: 20%
49
- min-width: 180px
49
+ flex-basis: 20%
50
+ min-width: 140px
50
51
  [class*='MuiPaper-root'], [class*='MuiOutlinedInput-root']
51
52
  font-size: 14px !important
52
53
 
@@ -59,7 +60,6 @@
59
60
  margin-right: 10px
60
61
  color: $skyBlue
61
62
  +media-tablet-down()
62
- font-size: 10px
63
63
  flex-basis: unset
64
64
 
65
65
  .resultText
@@ -94,4 +94,8 @@
94
94
 
95
95
  .sortingHeader
96
96
  color: $skyBlue
97
- font-size: 13px
97
+ font-size: 13px
98
+ display: flex
99
+ justify-content: end
100
+ align-items: center
101
+ column-gap: 10px
@@ -6,6 +6,7 @@ import { searchTopBarTranslate } from '../../../locales/data';
6
6
  import MaterialMenu from '../../_common/UserMenu/MaterialMenu';
7
7
  import { isMobileOnly } from 'react-device-detect';
8
8
  import MaterialAutocomplete from '../../_common/MaterialAutocomplete/MaterialAutocomplete';
9
+ import { IconSVG } from '@bytebrand/fe-ui-core/common';
9
10
 
10
11
  interface ISearchTopBarProps {
11
12
  t?: (key: string, options?: object) => string;
@@ -43,6 +44,7 @@ class SearchTopBar extends React.Component<ISearchTopBarProps, {}> {
43
44
  return (
44
45
  <span className={styles.sortingHeader}>
45
46
  {value}
47
+ <IconSVG name='menuArrow' customDimensions width={10} />
46
48
  </span>
47
49
  );
48
50
  }