@bytebrand/fe-ui-core 4.1.187 → 4.1.188

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.188",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -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 }) => {